mirror of
https://github.com/myned/modufur.git
synced 2024-12-25 06:37:29 +00:00
Shorten FileNotFound warning output
This commit is contained in:
parent
d80729c94e
commit
27c1346448
1 changed files with 1 additions and 2 deletions
|
@ -33,8 +33,7 @@ except FileNotFoundError:
|
||||||
with open('config.json', 'w') as outfile:
|
with open('config.json', 'w') as outfile:
|
||||||
jsn.dump({'client_id': 0, 'info_channel': 0, 'owner_id': 0, 'permissions': 126016,
|
jsn.dump({'client_id': 0, 'info_channel': 0, 'owner_id': 0, 'permissions': 126016,
|
||||||
'playing': 'a game', 'prefix': [',', 'm,'], 'selfbot': False, 'token': 'str'}, outfile, indent=4, sort_keys=True)
|
'playing': 'a game', 'prefix': [',', 'm,'], 'selfbot': False, 'token': 'str'}, outfile, indent=4, sort_keys=True)
|
||||||
raise FileNotFoundError(
|
print('FILE NOT FOUND : config.json created with abstract values. Restart run.py with correct values')
|
||||||
'FILE NOT FOUND : config.json created with abstract values. Restart run.py with correct values')
|
|
||||||
|
|
||||||
|
|
||||||
def setdefault(filename, default=None, json=False):
|
def setdefault(filename, default=None, json=False):
|
||||||
|
|
Loading…
Reference in a new issue