From 73f46abc13ef5046de4cfd22a6b20928aec394f6 Mon Sep 17 00:00:00 2001 From: Jack Robison Date: Tue, 31 Jul 2018 17:14:58 -0400 Subject: [PATCH] fix debug command --- txupnp/cli.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/txupnp/cli.py b/txupnp/cli.py index acfc5cf..05ad231 100644 --- a/txupnp/cli.py +++ b/txupnp/cli.py @@ -14,9 +14,7 @@ def run_command(found, u, command): reactor.callLater(0, reactor.stop) return if command == "debug_device": - external_ip = yield u.get_external_ip() print(u.get_debug_info()) - print("external ip: ", external_ip) if command == "list_mappings": redirects = yield u.get_redirects() print("found {} redirects".format(len(redirects)))