tfix: make uri optional in new_window - electrum - Electrum Bitcoin wallet
HTML git clone https://git.parazyd.org/electrum
DIR Log
DIR Files
DIR Refs
DIR Submodules
---
DIR commit 2a889d318be1e2d50945f49b565ccd09cebd69ff
DIR parent 3cc7c1454bb599c9d13863c553a533cd37e3224f
HTML Author: ThomasV <thomasv@electrum.org>
Date: Thu, 3 Sep 2015 11:27:33 +0200
fix: make uri optional in new_window
Diffstat:
M gui/qt/__init__.py | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
---
DIR diff --git a/gui/qt/__init__.py b/gui/qt/__init__.py
t@@ -199,9 +199,9 @@ class ElectrumGui:
return
wallet = wizard.run(action, wallet_type)
if wallet:
- self.start_new_window(full_path, None)
+ self.new_window(full_path)
- def new_window(self, path, uri):
+ def new_window(self, path, uri=None):
# Use a signal as can be called from daemon thread
self.app.emit(SIGNAL('new_window'), path, uri)