dlflannery commited on
Commit
ead2b78
·
verified ·
1 Parent(s): 8097a9d

Update app.py

Browse files

Corrected hd image stat mistake

Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -459,7 +459,7 @@ def make_image(prompt, user, pwd):
459
  image.save(fpath)
460
  with open(image_count_path(user), 'at') as fp:
461
  if quality == 'hd':
462
- fp.write('hd')
463
  else:
464
  fp.write('1\n')
465
  msg = 'Image created!'
 
459
  image.save(fpath)
460
  with open(image_count_path(user), 'at') as fp:
461
  if quality == 'hd':
462
+ fp.write('hd\n')
463
  else:
464
  fp.write('1\n')
465
  msg = 'Image created!'