From c313c3c34021d3b51157a1833b68359eef5cea20 Mon Sep 17 00:00:00 2001 From: ThomasV Date: Fri, 24 Jun 2016 23:14:07 +0200 Subject: [PATCH] remove forgotten imports and print statements --- gui/qt/installwizard.py | 2 -- lib/__init__.py | 1 - lib/daemon.py | 1 - 3 files changed, 4 deletions(-) diff --git a/gui/qt/installwizard.py b/gui/qt/installwizard.py index 3c29cf25c..3f245bd44 100644 --- a/gui/qt/installwizard.py +++ b/gui/qt/installwizard.py @@ -85,11 +85,9 @@ def wizard_dialog(func): try: out = func(*args, **kwargs) except GoBack: - print "go back" wizard.go_back() return except UserCancelled: - print "usercancelled" return #if out is None: # out = () diff --git a/lib/__init__.py b/lib/__init__.py index 5c6a9b3fd..e2abad7ab 100644 --- a/lib/__init__.py +++ b/lib/__init__.py @@ -11,4 +11,3 @@ import transaction from transaction import Transaction from plugins import BasePlugin from commands import Commands, known_commands -import wizard as wizard diff --git a/lib/daemon.py b/lib/daemon.py index 89fc70668..fc0291d20 100644 --- a/lib/daemon.py +++ b/lib/daemon.py @@ -35,7 +35,6 @@ from network import Network from util import json_decode, DaemonThread from util import print_msg, print_error, print_stderr from wallet import WalletStorage, Wallet -from wizard import WizardBase from commands import known_commands, Commands from simple_config import SimpleConfig