diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2013-05-24 00:14:23 +0200 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2013-05-24 00:14:23 +0200 |
commit | f1a20ba26fda68993325b16196f563e6aeebe60c (patch) | |
tree | 5e920ca5eacef7913b60e0d1cc289d87e9949a3b /module/remote/create_apitypes.py | |
parent | fixed bug in asynchandler (diff) | |
download | pyload-f1a20ba26fda68993325b16196f563e6aeebe60c.tar.xz |
improvements to json api
Diffstat (limited to 'module/remote/create_apitypes.py')
-rw-r--r-- | module/remote/create_apitypes.py | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/module/remote/create_apitypes.py b/module/remote/create_apitypes.py index 7755b5c57..d596f07ac 100644 --- a/module/remote/create_apitypes.py +++ b/module/remote/create_apitypes.py @@ -3,19 +3,18 @@ import re import inspect -import sys from os.path import abspath, dirname, join path = dirname(abspath(__file__)) -module = join(path, "..", "..") - -sys.path.append(join(module, "lib")) -sys.path.append(join(module, "remote")) +root = abspath(join(path, "..", "..")) from thrift.Thrift import TType from thriftgen.pyload import ttypes from thriftgen.pyload import Pyload +# TODO: import and add version +# from pyload import CURRENT_VERSION + type_map = { TType.BOOL: 'bool', TType.DOUBLE: 'float', |