Spaces:
Running
Running
Update dl.py
Browse files
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(
|
99 |
try:
|
100 |
-
zipObj.write(f'{
|
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')
|