Merge dev/remoteFetch #2

Merged
giuliof merged 8 commits from dev/remoteFetch into master 2021-09-14 19:41:11 +00:00
1 changed files with 3 additions and 2 deletions
Showing only changes of commit df82337f1f - Show all commits

View File

@ -122,5 +122,6 @@ try:
# Wanna get a pretty JSON encoded library to do your nasty things offline at home? ;-)
print(json.dumps(result, indent=4))
except:
logging.error("Unexpected error:", sys.exc_info()[0])
# Avoid printing on str{out,err} the unexpected exception traces. Log it instead.
except Exception as e:
logging.exception(e)