From 139502c021fe05af44d467cb542ea3d284659c8e Mon Sep 17 00:00:00 2001 From: Myned Date: Sun, 24 Sep 2017 11:52:26 -0400 Subject: [PATCH] "Edited an indent" --- src/main/run.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/main/run.py b/src/main/run.py index da06cf9..c96f37f 100644 --- a/src/main/run.py +++ b/src/main/run.py @@ -14,8 +14,7 @@ try: print('\"config.json\" loaded.') except FileNotFoundError: with open('config.json', 'w') as outfile: - json.dump({'client_id': 'int', 'owner_id': 'int', 'permissions': 'int', 'shutdown_channel': 'int', 'startup_channel': 'int', - 'token': 'str'}, outfile, indent=4, sort_keys=True) + json.dump({'client_id': 'int', 'owner_id': 'int', 'permissions': 'int', 'shutdown_channel': 'int', 'startup_channel': 'int', 'token': 'str'}, outfile, indent=4, sort_keys=True) raise FileNotFoundError('Config file not found: \"config.json\" created with abstract values. Restart \"run.py\" with correct values.') bot = commands.Bot(command_prefix=commands.when_mentioned_or(','), description='Experimental booru bot')