25 |
|
try: |
26 |
|
from CRAB_Server_API_1_1 import CRAB_Server_Session as C_AS_Session |
27 |
|
except : |
28 |
< |
from CRAB_Server_API_36X import CRAB_Server_Session as C_AS_Session |
28 |
> |
try: |
29 |
> |
from CRAB_Server_API_36X import CRAB_Server_Session as C_AS_Session |
30 |
> |
except : |
31 |
> |
from CRAB_Server_API_311X import CRAB_Server_Session as C_AS_Session |
32 |
|
else: |
33 |
|
try: |
34 |
|
from lib64.CRAB_Server_API_1_1 import CRAB_Server_Session as C_AS_Session |
35 |
|
except: |
36 |
< |
from lib64.CRAB_Server_API_36X_amd64 import CRAB_Server_Session as C_AS_Session |
36 |
> |
try: |
37 |
> |
from lib64.CRAB_Server_API_36X_amd64 import CRAB_Server_Session as C_AS_Session |
38 |
> |
except: |
39 |
> |
from lib64.CRAB_Server_API_311X_amd64 import CRAB_Server_Session as C_AS_Session |
40 |
|
|
41 |
|
class ServerCommunicator: |
42 |
|
""" |