lixuejing commited on
Commit
95f2222
·
1 Parent(s): 3996254
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -66,7 +66,8 @@ def init_space():
66
  repo_id=RESULTS_REPO, local_dir=EVAL_RESULTS_PATH, repo_type="dataset", tqdm_class=None, etag_timeout=30
67
  )
68
  except Exception:
69
- print("EVAL_RESULTS exception", Exception)
 
70
  restart_space()
71
 
72
 
 
66
  repo_id=RESULTS_REPO, local_dir=EVAL_RESULTS_PATH, repo_type="dataset", tqdm_class=None, etag_timeout=30
67
  )
68
  except Exception:
69
+ import traceback
70
+ print("EVAL_RESULTS exception",traceback.format_exc())
71
  restart_space()
72
 
73