diff --git a/disco/cli.py b/disco/cli.py index 854a344..a689741 100644 --- a/disco/cli.py +++ b/disco/cli.py @@ -51,7 +51,8 @@ def disco_main(run=False): config = ClientConfig() config.manhole_enable = args.manhole - config.manhole_bind = args.manhole_bind.split(':', 1) + if config.manhole_enable: + config.manhole_bind = args.manhole_bind.split(':', 1) for k, v in six.iteritems(vars(args)): if hasattr(config, k) and v is not None: @@ -92,5 +93,6 @@ def disco_main(run=False): return (bot or client) + if __name__ == '__main__': disco_main(True)