From 5062e642c23f940942909ec565c94255b391f260 Mon Sep 17 00:00:00 2001 From: "J.R. Mathis" Date: Sat, 12 Aug 2017 22:59:07 -0500 Subject: [PATCH] Fix minor typo in exporting labels Changed "where" to "were" --- gui/qt/main_window.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gui/qt/main_window.py b/gui/qt/main_window.py index 1eeb3a5a..2a2fa9c8 100644 --- a/gui/qt/main_window.py +++ b/gui/qt/main_window.py @@ -2201,7 +2201,7 @@ class ElectrumWindow(QMainWindow, MessageBoxMixin, PrintError): if fileName: with open(fileName, 'w+') as f: json.dump(labels, f, indent=4, sort_keys=True) - self.show_message(_("Your labels where exported to") + " '%s'" % str(fileName)) + self.show_message(_("Your labels were exported to") + " '%s'" % str(fileName)) except (IOError, os.error), reason: self.show_critical(_("Electrum was unable to export your labels.") + "\n" + str(reason))