From 99ec1c400d79ecc41ae1745e794e21e2e79d2add Mon Sep 17 00:00:00 2001 From: Walter Purcaro Date: Mon, 13 Apr 2015 16:05:04 +0200 Subject: Move lib to lib/Python/Lib --- pyload/remote/thriftbackend/ThriftClient.py | 2 +- pyload/remote/thriftbackend/ThriftTest.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'pyload/remote/thriftbackend') diff --git a/pyload/remote/thriftbackend/ThriftClient.py b/pyload/remote/thriftbackend/ThriftClient.py index 7c2a1cb01..26658e341 100644 --- a/pyload/remote/thriftbackend/ThriftClient.py +++ b/pyload/remote/thriftbackend/ThriftClient.py @@ -12,7 +12,7 @@ except ImportError: if "64" in platform.machine(): sys.path.append(os.path.join(pypath, "lib64")) - sys.path.append(os.path.join(pypath, "lib")) + sys.path.append(os.path.join(pypath, "lib", "Python", "Lib")) from thrift.transport import TTransport #from thrift.transport.TZlibTransport import TZlibTransport diff --git a/pyload/remote/thriftbackend/ThriftTest.py b/pyload/remote/thriftbackend/ThriftTest.py index c9c0d3cf3..f4c927bd7 100644 --- a/pyload/remote/thriftbackend/ThriftTest.py +++ b/pyload/remote/thriftbackend/ThriftTest.py @@ -6,7 +6,7 @@ import sys if "64" in platform.machine(): sys.path.append(os.path.join(pypath, "lib64")) -sys.path.append(os.path.join(pypath, "lib")) +sys.path.append(os.path.join(pypath, "lib", "Python", "Lib")) from pyload.remote.thriftbackend.thriftgen.pyload import Pyload -- cgit v1.2.3