lixuejing commited on
Commit
221303c
·
1 Parent(s): 4dee79e
Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -65,8 +65,9 @@ def init_space():
65
  snapshot_download(
66
  repo_id=RESULTS_REPO, local_dir=EVAL_RESULTS_PATH, repo_type="dataset", tqdm_class=None, etag_timeout=30
67
  )
68
- except Exception as e:
69
- print("EVAL_RESULTS exception", e)
 
70
  restart_space()
71
 
72
 
 
65
  snapshot_download(
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