fix persist_dir creation
This commit is contained in:
parent
08ea88afd2
commit
1d7a82fe58
2
bot.py
2
bot.py
|
@ -16,7 +16,7 @@ class Bot(object):
|
||||||
self.conns = {}
|
self.conns = {}
|
||||||
self.persist_dir = os.path.abspath('persist')
|
self.persist_dir = os.path.abspath('persist')
|
||||||
if not os.path.exists(self.persist_dir):
|
if not os.path.exists(self.persist_dir):
|
||||||
os.mkdir(bot.persist_dir)
|
os.mkdir(self.persist_dir)
|
||||||
|
|
||||||
bot = Bot()
|
bot = Bot()
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue