URI: 
       tadd help text for csv - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit 4eb1eb3677759dc2215a062a8f1568589525a28e
   DIR parent f30fedc591003360530220973d9ad00e0d2c0a41
  HTML Author: ThomasV <thomasv@gitorious>
       Date:   Sat, 28 Sep 2013 16:03:52 +0200
       
       add help text for csv
       
       Diffstat:
         M gui/qt/main_window.py               |       3 ++-
       
       1 file changed, 2 insertions(+), 1 deletion(-)
       ---
   DIR diff --git a/gui/qt/main_window.py b/gui/qt/main_window.py
       t@@ -1750,7 +1750,8 @@ class ElectrumWindow(QMainWindow):
                    return
        
            def do_process_from_csv_text(self):
       -        text = text_dialog(self, _('Input CSV'), _("CSV:"), _("Load CSV"))
       +        text = text_dialog(self, _('Input CSV'), _("Please enter a list of outputs.") + '\n' \
       +                               + _("Format: address, amount. One output per line"), _("Load CSV"))
                if not text:
                    return
                f = StringIO.StringIO(text)