From: Micah Lee Date: Fri, 15 Feb 2013 17:22:46 +0000 (-0800) Subject: I was running gtk.main() twice X-Git-Url: https://git.lizzy.rs/?a=commitdiff_plain;h=f8a8373630b8332121bfe2a3689bea9f22800ba4;p=torbrowser-launcher.git I was running gtk.main() twice --- diff --git a/torbrowser-launcher b/torbrowser-launcher index c9abce3..1094fc7 100755 --- a/torbrowser-launcher +++ b/torbrowser-launcher @@ -210,15 +210,10 @@ class TorBrowserLauncher: # open a file to write to self.tarball_file = open(self.tarball_path, 'w') - - def main(self): - gtk.main() - if __name__ == "__main__": print 'Tor Browser Launcher' print 'https://github.com/micahflee/torbrowser-launcher' current_tbb_version = '2.3.25-2' app = TorBrowserLauncher(current_tbb_version) - app.main()