tremove forgotten imports and print statements - electrum - Electrum Bitcoin wallet
HTML git clone https://git.parazyd.org/electrum
DIR Log
DIR Files
DIR Refs
DIR Submodules
---
DIR commit c313c3c34021d3b51157a1833b68359eef5cea20
DIR parent e7d25faf028543760f7ae114c395a4400c507636
HTML Author: ThomasV <thomasv@electrum.org>
Date: Fri, 24 Jun 2016 23:14:07 +0200
remove forgotten imports and print statements
Diffstat:
M gui/qt/installwizard.py | 2 --
M lib/__init__.py | 1 -
M lib/daemon.py | 1 -
3 files changed, 0 insertions(+), 4 deletions(-)
---
DIR diff --git a/gui/qt/installwizard.py b/gui/qt/installwizard.py
t@@ -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 = ()
DIR diff --git a/lib/__init__.py b/lib/__init__.py
t@@ -11,4 +11,3 @@ import transaction
from transaction import Transaction
from plugins import BasePlugin
from commands import Commands, known_commands
-import wizard as wizard
DIR diff --git a/lib/daemon.py b/lib/daemon.py
t@@ -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