Spaces:
Running
Running
Commit
·
125b0cb
1
Parent(s):
92dfaaf
Fix log file retrieval
Browse files- app_debug.py +1 -1
app_debug.py
CHANGED
|
@@ -51,7 +51,7 @@ def get_log_files():
|
|
| 51 |
return [
|
| 52 |
join(LOG_PATH, f)
|
| 53 |
for f in listdir(LOG_PATH)
|
| 54 |
-
if isfile(join(LOG_PATH, f)) and f.endswith("
|
| 55 |
]
|
| 56 |
|
| 57 |
|
|
|
|
| 51 |
return [
|
| 52 |
join(LOG_PATH, f)
|
| 53 |
for f in listdir(LOG_PATH)
|
| 54 |
+
if isfile(join(LOG_PATH, f)) and f.endswith("log")
|
| 55 |
]
|
| 56 |
|
| 57 |
|