1
0
Fork 0
mirror of https://github.com/myned/modufur.git synced 2024-11-01 13:02:38 +00:00

Possible fix for TypeError

This commit is contained in:
Myned 2017-12-31 22:09:23 -05:00
parent c266ee969a
commit 797d68b296

View file

@ -40,12 +40,12 @@ except FileNotFoundError:
def setdefault(filename, default=None, json=False):
if json:
try:
with open(filename, 'rb') as infile:
with open(filename, 'r') as infile:
print(f'LOADED : {filename}')
return jsn.load(infile)
except FileNotFoundError:
with open(filename, 'wb+') as iofile:
with open(filename, 'w+') as iofile:
print(f'FILE NOT FOUND : {filename} created and loaded with default values')
jsn.dump(default, iofile)
iofile.seek(0)