erenyildiz
erenyildiz
Hi there A more detailed error message is here when you create a bot at startup: ←[K←[?25hTraceback (most recent call last): File "BotRunner.py", line 536, in Main() File "BotRunner.py", line...
I think the second error is generated because the symbols vary from platform to platform. We need to delete the database file first and start BotRunner anew. The first issue...
Solved the issue as below: Line 252 in Database.py should read as follows: c.execute('SELECT * FROM pairs Where bot_id = ? and is_active = 1', (bot['id'],)) NOT as below. Let...