From aab094d0e28ba1f9fb360096fdf5e83a730bd2f8 Mon Sep 17 00:00:00 2001 From: The Dod Date: Mon, 13 Oct 2014 11:42:48 +0700 Subject: [PATCH] Remove debug prints :s --- onionshare/onionshare.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/onionshare/onionshare.py b/onionshare/onionshare.py index c81048b6..f99d482e 100644 --- a/onionshare/onionshare.py +++ b/onionshare/onionshare.py @@ -124,7 +124,6 @@ class OnionShare(object): self.original_hs = self.controller.get_conf_map('HiddenServiceOptions') or { 'HiddenServiceDir': [], 'HiddenServicePort': [] } - print hsdic2list(self.original_hs) new_hs = self.original_hs.copy() if not hidserv_dir in new_hs['HiddenServiceDir']: # Unless another instance has opened @@ -134,7 +133,6 @@ class OnionShare(object): '80 127.0.0.1:{0}'.format(self.port)) self.controller.set_options(hsdic2list(new_hs)) - print self.controller.get_conf_map('HiddenServiceOptions') # figure out the .onion hostname hostname_file = '{0}/hostname'.format(hidserv_dir)