URI: 
       tfix indent - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit 7c1d07c999de8c50723e19c7de3d45a87ac5b153
   DIR parent 034bc64fe6989501e2f7cd9af28364d5318d49d1
  HTML Author: ThomasV <thomasv@gitorious>
       Date:   Mon, 27 May 2013 21:18:29 +0200
       
       fix indent
       
       Diffstat:
         M plugins/qrscanner.py                |      12 ++++++------
       
       1 file changed, 6 insertions(+), 6 deletions(-)
       ---
   DIR diff --git a/plugins/qrscanner.py b/plugins/qrscanner.py
       t@@ -151,11 +151,11 @@ class Plugin(BasePlugin):
                d.exec_()
        
            def read_raw_qr(self):
       -    qrcode = self.scan_qr()
       -    if qrcode:
       -        tx_dict = self.gui.tx_dict_from_text(qrcode)
       -        if tx_dict:
       -            self.create_transaction_details_window(tx_dict)
       +        qrcode = self.scan_qr()
       +        if qrcode:
       +            tx_dict = self.gui.tx_dict_from_text(qrcode)
       +            if tx_dict:
       +                self.create_transaction_details_window(tx_dict)
        
        
            def create_transaction_details_window(self, tx_dict):
       t@@ -183,7 +183,7 @@ class Plugin(BasePlugin):
                        l.addWidget(QLabel(_("Wallet is de-seeded, can't sign.")), 4,1)
                else:
                    l.addWidget(QLabel(_("Signed")), 3,1)
       -        b = QPushButton("Broadcast transaction")
       +            b = QPushButton("Broadcast transaction")
                    b.clicked.connect(lambda: self.gui.send_raw_transaction(tx, dialog))
                    l.addWidget(b,4,1)