URI: 
       tindent unsigned tx - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit 86826088130b4a1e1b84a87a3c2ea52144a7cdd3
   DIR parent f549e15a1282526fad8dc69681e6f0bf2739d013
  HTML Author: ThomasV <thomasv@gitorious>
       Date:   Mon, 25 Feb 2013 20:48:45 +0100
       
       indent unsigned tx
       
       Diffstat:
         M lib/gui_qt.py                       |       2 +-
       
       1 file changed, 1 insertion(+), 1 deletion(-)
       ---
   DIR diff --git a/lib/gui_qt.py b/lib/gui_qt.py
       t@@ -928,7 +928,7 @@ class ElectrumWindow(QMainWindow):
                    filename = 'unsigned_tx'
                    f = open(filename,'w')
                    import json
       -            out = json.dumps({"hex":str(tx), "complete":tx.is_complete, 'input_info':repr(tx.input_info).replace(' ','')})
       +            out = json.dumps({"hex":str(tx), "complete":tx.is_complete, 'input_info':repr(tx.input_info).replace(' ','')}, indent=4)
                    f.write(out + '\n')
                    f.close()
                    QMessageBox.information(self, _('Unsigned transaction'), _("Unsigned transaction was saved to file:") + " " +filename, _('OK'))