From 0a6d01f11e4a88b99bdb14069de9d8127c874e28 Mon Sep 17 00:00:00 2001 From: Micah Lee Date: Tue, 26 Aug 2014 17:07:57 -0700 Subject: [PATCH] removed debug comment --- onionshare/onionshare.py | 1 - 1 file changed, 1 deletion(-) diff --git a/onionshare/onionshare.py b/onionshare/onionshare.py index 8fa89948..def2bd91 100644 --- a/onionshare/onionshare.py +++ b/onionshare/onionshare.py @@ -352,7 +352,6 @@ def main(): if get_platform() == 'Tails': # if this is tails, start the root process - #root_p = subprocess.Popen(['/usr/bin/gksudo', '-D', 'OnionShare', '--', '/usr/bin/onionshare', str(port)], stderr=subprocess.PIPE, stdout=subprocess.PIPE) root_p = subprocess.Popen(['/usr/bin/sudo', '--', '/usr/bin/onionshare', str(port)], stderr=subprocess.PIPE, stdout=subprocess.PIPE) stdout = root_p.stdout.read(22) # .onion URLs are 22 chars long