URI: 
       tMerge pull request #2742 from mathiscode/patch-1 - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit 63bb01cf8fc3379224eb7d2a45891ad673ac0201
   DIR parent 8d82e66eee412a04d73e246528eccc47155fdccc
  HTML Author: ThomasV <thomasv@electrum.org>
       Date:   Sun, 13 Aug 2017 07:01:23 +0200
       
       Merge pull request #2742 from mathiscode/patch-1
       
       Fix minor typo in exporting labels
       Diffstat:
         M gui/qt/main_window.py               |       2 +-
       
       1 file changed, 1 insertion(+), 1 deletion(-)
       ---
   DIR diff --git a/gui/qt/main_window.py b/gui/qt/main_window.py
       t@@ -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))