Omnibus commited on
Commit
a5c4ee5
·
1 Parent(s): 8380d5f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -2
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", "rb") as f:
22
  f_out = f.readlines()
23
  for line in f_out:
24
- print (line.decode('utf-8', 'backslashreplace'))
 
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: