1
0

Merge pull request #3867 from SomberNight/check_trezor_version

check trezorlib version
This commit is contained in:
ThomasV
2018-02-09 12:15:15 +01:00
committed by GitHub
4 changed files with 31 additions and 14 deletions

View File

@@ -734,4 +734,8 @@ def setup_thread_excepthook():
self.run = run_with_except_hook
threading.Thread.__init__ = init
threading.Thread.__init__ = init
def versiontuple(v):
return tuple(map(int, (v.split("."))))