Browse Source

[cli] properly fix manhole_bind/enable usage

pull/38/head
Andrei 8 years ago
parent
commit
d0de5a3408
  1. 4
      disco/cli.py

4
disco/cli.py

@ -51,8 +51,8 @@ def disco_main(run=False):
config = ClientConfig() config = ClientConfig()
config.manhole_enable = args.manhole config.manhole_enable = args.manhole
if config.manhole_enable: if args.manhole_bind:
config.manhole_bind = args.manhole_bind.split(':', 1) config.manhole_bind = args.manhole_bind
for k, v in six.iteritems(vars(args)): for k, v in six.iteritems(vars(args)):
if hasattr(config, k) and v is not None: if hasattr(config, k) and v is not None:

Loading…
Cancel
Save