trezor-agent: use single identity per invocation

This commit is contained in:
Roman Zeyde
2015-07-04 09:23:36 +03:00
parent 8c82480c34
commit dcfc88c7e1

View File

@@ -17,10 +17,10 @@ def main():
g.add_argument('-v', '--verbose', default=0, action='count')
g.add_argument('-q', '--quiet', default=False, action='store_true')
p.add_argument('-c', dest='command', type=str, default=None,
help='command to run under the SSH agent')
p.add_argument('identity', type=str, nargs='+',
p.add_argument('identity', type=str,
help='proto://[user@]host[:port][/path]')
p.add_argument('command', type=str, nargs='*',
help='command to run under the SSH agent')
args = p.parse_args()
loglevel = logging.INFO