From b494b2d3a0222d95176265a487ba232b6bb4ffc3 Mon Sep 17 00:00:00 2001 From: Pavol Rusnak Date: Fri, 11 Nov 2016 19:18:52 +0100 Subject: [PATCH] trezorctl: cleanup old stuff --- trezorctl | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/trezorctl b/trezorctl index 5e6291ff7a..8f969fa799 100755 --- a/trezorctl +++ b/trezorctl @@ -39,11 +39,8 @@ def init_parser(commands): parser = argparse.ArgumentParser(description='Commandline tool for TREZOR devices.') parser.add_argument('-v', '--verbose', dest='verbose', action='store_true', help='Prints communication to device') parser.add_argument('-t', '--transport', dest='transport', choices=['usb', 'udp', 'pipe', 'bridge'], default='usb', help="Transport used for talking with the device") - parser.add_argument('-p', '--path', dest='path', default='', help="Path used by the transport (usually serial port)") -# parser.add_argument('-dt', '--debuglink-transport', dest='debuglink_transport', choices=['usb', 'serial', 'pipe', 'socket'], default='usb', help="Debuglink transport") -# parser.add_argument('-dp', '--debuglink-path', dest='debuglink_path', default='', help="Path used by the transport (usually serial port)") + parser.add_argument('-p', '--path', dest='path', default='', help="Path used by the transport") parser.add_argument('-j', '--json', dest='json', action='store_true', help="Prints result as json object") -# parser.add_argument('-d', '--debug', dest='debug', action='store_true', help='Enable low-level debugging') cmdparser = parser.add_subparsers(title='Available commands')