Omnibus commited on
Commit
cd61055
1 Parent(s): c56f84e

Update dl.py

Browse files
Files changed (1) hide show
  1. dl.py +2 -2
dl.py CHANGED
@@ -95,9 +95,9 @@ def show_all(author,token):
95
 
96
  file_list.append(f'{space_ea}.zip')
97
  with ZipFile(f"{author}.zip", "w") as zipObj:
98
- for idx, file in enumerate(s_ist):
99
  try:
100
- zipObj.write(f'{space_ea}.zip')
101
  except Exception:
102
  pass
103
  file_list.append(f'{author}.zip')
 
95
 
96
  file_list.append(f'{space_ea}.zip')
97
  with ZipFile(f"{author}.zip", "w") as zipObj:
98
+ for idx, file in enumerate(file_list):
99
  try:
100
+ zipObj.write(f'{file}')
101
  except Exception:
102
  pass
103
  file_list.append(f'{author}.zip')