philip/demurrage-token-deploy #1

Closed
mango-habanero wants to merge 4 commits from philip/demurrage-token-deploy into master
Showing only changes of commit 10cbb1344d - Show all commits

View File

@ -105,10 +105,10 @@ class Extension:
r = f.read()
f.close()
self.parse_code_as_hex(r)
except FileNotFoundError:
except FileNotFoundError as e:
logg.debug('could not parse code as file: {}'.format(e))
pass
except IsADirectoryError:
except IsADirectoryError as e:
logg.debug('could not parse code as file: {}'.format(e))
Outdated
Review

probably debug output should be slightly different here to disambiguate?

probably debug output should be slightly different here to disambiguate?
pass