Dokument / PyBitmessage-Daemon

PyBitmessage Daemon Client

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

not working with arch linux

netmonk opened this issue · comments

After installed daemon.py into the folder of bitmessage/src, restarting bitmessage and starting daemon, daemon is not launching !

File "daemon.py", line 920, in main
api = xmlrpclib.ServerProxy(apiData()) #Connect to BitMessage using these api credentials
File "daemon.py", line 135, in apiData
config = ConfigParser.SafeConfigParser()
File "/usr/lib/python2.7/ConfigParser.py", line 235, in init
self._sections = self._dict()
File "/usr/lib/python2.7/collections.py", line 52, in init
self.*update(_args, _kwds)
File "/usr/lib/python2.7/_abcoll.py", line 540, in update
if isinstance(other, Mapping):
File "/usr/lib/python2.7/abc.py", line 132, in __instancecheck

if subclass is not None and subclass in cls._abc_cache:
File "/usr/lib/python2.7/_weakrefset.py", line 70, in contains
wr = ref(item)
RuntimeError: maximum recursion depth exceeded

fixed by remplacing :
54 dataFolder = path.expanduser(path.join("", "." + APPNAME + "/"))
by
54 dataFolder = path.expanduser(path.join("
", ".config/" + APPNAME + "/"))

Thanks netmonk. added and updated to version 0.2.0