URI: 
       tstr->unicode - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit c7815bed0d6fc359849a989adfc29e5dcd67dcc9
   DIR parent b64fef53dcd2f91e8572f047da2ad93cd736c866
  HTML Author: ThomasV <thomasv@gitorious>
       Date:   Thu, 13 Nov 2014 15:03:56 +0100
       
       str->unicode
       
       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@@ -768,7 +768,7 @@ class ElectrumWindow(QMainWindow):
            def save_payment_request(self):
                addr = str(self.receive_address_e.text())
                amount = self.receive_amount_e.get_amount()
       -        message = str(self.receive_message_e.text())
       +        message = unicode(self.receive_message_e.text())
                if not message and not amount:
                    QMessageBox.warning(self, _('Error'), _('No message or amount'), _('OK'))
                    return