commit 1d2253f0d883f91258b1403f4a4b68d4e5a4fd18
parent 4bc2a4e8055b9481cdc2e3f8f1e317bae821cee0
Author: ThomasV <thomasv@electrum.org>
Date: Sat, 21 Oct 2017 11:03:47 +0200
kivy: python3 imports
Diffstat:
2 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/gui/kivy/main_window.py b/gui/kivy/main_window.py
@@ -92,7 +92,7 @@ class ElectrumWindow(App):
self.auto_connect = not self.auto_connect
def choose_server_dialog(self, popup):
- from uix.dialogs.choice_dialog import ChoiceDialog
+ from .uix.dialogs.choice_dialog import ChoiceDialog
protocol = 's'
def cb2(host):
from electrum.network import DEFAULT_PORTS
@@ -104,7 +104,7 @@ class ElectrumWindow(App):
ChoiceDialog(_('Choose a server'), sorted(servers), popup.ids.host.text, cb2).open()
def choose_blockchain_dialog(self, dt):
- from uix.dialogs.choice_dialog import ChoiceDialog
+ from .uix.dialogs.choice_dialog import ChoiceDialog
chains = self.network.get_blockchains()
def cb(name):
for index, b in self.network.blockchains.items():
diff --git a/gui/kivy/uix/screens.py b/gui/kivy/uix/screens.py
@@ -120,7 +120,7 @@ class HistoryScreen(CScreen):
self.app.tx_dialog(tx)
def label_dialog(self, obj):
- from dialogs.label_dialog import LabelDialog
+ from .dialogs.label_dialog import LabelDialog
key = obj.tx_hash
text = self.app.wallet.get_label(key)
def callback(text):
@@ -264,7 +264,7 @@ class SendScreen(CScreen):
message = self.screen.message
amount = sum(map(lambda x:x[2], outputs))
if self.app.electrum_config.get('use_rbf'):
- from dialogs.question import Question
+ from .dialogs.question import Question
d = Question(_('Should this transaction be replaceable?'), lambda b: self._do_send(amount, message, outputs, b))
d.open()
else:
@@ -467,7 +467,7 @@ class InvoicesScreen(CScreen):
self.app.show_pr_details(pr.get_dict(), obj.status, True)
def do_delete(self, obj):
- from dialogs.question import Question
+ from .dialogs.question import Question
def cb(result):
if result:
self.app.wallet.invoices.remove(obj.key)
@@ -537,7 +537,7 @@ class RequestsScreen(CScreen):
self.app.show_pr_details(req, status, False)
def do_delete(self, obj):
- from dialogs.question import Question
+ from .dialogs.question import Question
def cb(result):
if result:
self.app.wallet.remove_payment_request(obj.address, self.app.electrum_config)