Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -18,10 +18,11 @@ def dl(inp):
|
|
18 |
out_file.append(f"{inp_out}.info.json")
|
19 |
|
20 |
try:
|
21 |
-
with open(f"{inp_out}.info.json", "
|
22 |
f_out = f.readlines()
|
23 |
for line in f_out:
|
24 |
-
print (line
|
|
|
25 |
except Exception as e:
|
26 |
print (e)
|
27 |
except Exception as e:
|
|
|
18 |
out_file.append(f"{inp_out}.info.json")
|
19 |
|
20 |
try:
|
21 |
+
with open(f"{inp_out}.info.json", "r") as f:
|
22 |
f_out = f.readlines()
|
23 |
for line in f_out:
|
24 |
+
print (line)
|
25 |
+
#print (line.decode('utf-8', 'backslashreplace'))
|
26 |
except Exception as e:
|
27 |
print (e)
|
28 |
except Exception as e:
|