commit c313c3c34021d3b51157a1833b68359eef5cea20
parent e7d25faf028543760f7ae114c395a4400c507636
Author: ThomasV <thomasv@electrum.org>
Date: Fri, 24 Jun 2016 23:14:07 +0200
remove forgotten imports and print statements
Diffstat:
3 files changed, 0 insertions(+), 4 deletions(-)
diff --git 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
@@ -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
@@ -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