Browse Source

Fixes dependency to pinmatrix

283
slush0 11 years ago
committed by m0mchil
parent
commit
9f47762c12
  1. 5
      plugins/trezor.py

5
plugins/trezor.py

@ -17,10 +17,11 @@ try:
import cmdtr
from trezorlib.client import types
from trezorlib.client import proto, BaseClient, ProtocolMixin
from trezorlib.pinmatrix import PinMatrixWidget
from trezorlib.qt.pinmatrix import PinMatrixWidget
from trezorlib.transport import ConnectionError
TREZOR = True
except: TREZOR = False
except ImportError:
TREZOR = False
def log(msg):
stderr.write("%s\n" % msg)

Loading…
Cancel
Save