changed db to data
This commit is contained in:
parent
31962d33c6
commit
74c2cf79e2
1 changed files with 2 additions and 2 deletions
|
|
@ -185,8 +185,8 @@ async def chat_response(ctx, channel_vars, chat_history_string):
|
|||
await handle_error(error)
|
||||
|
||||
async def folder_setup():
|
||||
# Only tmp, extensions and db are supported, all other folders only exist for backwards compatibility and will be removed soon!
|
||||
folder_names = ["tmp", "extensions", "db", "plugins", "tmp/sfw", "tmp/nsfw", "tmp/meme", "channels", "users", "channels/config", "channels/logs", "databases", "databases/currency", "databases/currency/players"]
|
||||
# Only tmp, extensions and data are supported, all other folders only exist for backwards compatibility and will be removed soon!
|
||||
folder_names = ["tmp", "extensions", "data", "plugins", "tmp/sfw", "tmp/nsfw", "tmp/meme", "channels", "users", "channels/config", "channels/logs", "databases", "databases/currency", "databases/currency/players"]
|
||||
for folder_name in folder_names:
|
||||
if not os.path.exists(folder_name):
|
||||
os.mkdir(folder_name)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue