use HidTransport by default again

This commit is contained in:
Pavol Rusnak 2014-07-29 18:57:13 +02:00
parent 608025419b
commit 9ed0604b65
2 changed files with 2 additions and 2 deletions

View File

@ -11,7 +11,7 @@ devices = HidTransport.enumerate()
if len(devices) > 0:
if devices[0][1] != None:
print 'Using TREZOR'
TRANSPORT = BridgeTransport
TRANSPORT = HidTransport
TRANSPORT_ARGS = (devices[0],)
TRANSPORT_KWARGS = {'debug_link': False}
DEBUG_TRANSPORT = HidTransport

View File

@ -1,5 +1,5 @@
#!/bin/bash
for i in test_*.py; do
echo Starting: $i
python $i > $i.out
python $i > $i.out 2> $i.err
done