Skip to content

Commit

Permalink
Merge pull request #10 from guili618/my_dev
Browse files Browse the repository at this point in the history
To make the error display more detailed using traceback.print_exc()
  • Loading branch information
joonspk-research authored Aug 10, 2023
2 parents c88afd7 + 2aa4474 commit 7373f4e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion reverie/backend_server/reverie.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
import math
import os
import shutil
import traceback

from selenium import webdriver

Expand Down Expand Up @@ -591,7 +592,8 @@ def open_server(self):

print (ret_str)

except:
except:
traceback.print_exc()
print ("Error.")
pass

Expand Down

0 comments on commit 7373f4e

Please sign in to comment.