Merge remote-tracking branch 'origin/master'
This commit is contained in:
commit
b8da3f904a
1 changed files with 3 additions and 3 deletions
|
@ -33,9 +33,9 @@ class Tox(object):
|
||||||
# TODO: different names for different OS
|
# TODO: different names for different OS
|
||||||
temp = os.path.abspath(__file__)
|
temp = os.path.abspath(__file__)
|
||||||
temp = os.path.realpath(temp)
|
temp = os.path.realpath(temp)
|
||||||
temp = os.path.dirname(temp)
|
temp = os.path.dirname(temp) + '/libs/'
|
||||||
os.chdir(temp + '/libs/')
|
os.chdir(temp)
|
||||||
self.libtoxcore = CDLL('libtoxcore.so')
|
self.libtoxcore = CDLL(temp + 'libtoxcore.so')
|
||||||
print self.libtoxcore.__dict__
|
print self.libtoxcore.__dict__
|
||||||
self.libtoxcore.tox_options_new.restype = POINTER(ToxOptions)
|
self.libtoxcore.tox_options_new.restype = POINTER(ToxOptions)
|
||||||
# TODO: load from settings
|
# TODO: load from settings
|
||||||
|
|
Loading…
Reference in a new issue