Spaces:
Runtime error
Runtime error
Commit ·
9d693ad
1
Parent(s): 37f029a
Update app.py
Browse files
app.py
CHANGED
|
@@ -37,13 +37,11 @@ def download(text):
|
|
| 37 |
|
| 38 |
#downloading all files
|
| 39 |
print('downloading...')
|
| 40 |
-
|
| 41 |
-
|
| 42 |
-
|
| 43 |
-
|
| 44 |
-
|
| 45 |
-
except Exception as e :
|
| 46 |
-
err_msgs.append(f'error downloading: {url} - {str(e)}')
|
| 47 |
|
| 48 |
#zipping
|
| 49 |
print('zipping ...')
|
|
|
|
| 37 |
|
| 38 |
#downloading all files
|
| 39 |
print('downloading...')
|
| 40 |
+
|
| 41 |
+
try:
|
| 42 |
+
download_local(url)
|
| 43 |
+
except Exception as e :
|
| 44 |
+
err_msgs.append(f'error downloading: {url} - {str(e)}')
|
|
|
|
|
|
|
| 45 |
|
| 46 |
#zipping
|
| 47 |
print('zipping ...')
|