Browse Source

fix syntax error

master
ThomasV 10 years ago
parent
commit
e80870a9b0
  1. 3
      plugins/exchange_rate.py

3
plugins/exchange_rate.py

@ -313,11 +313,10 @@ class Plugin(BasePlugin):
return return
if not self.resp_hist: if not self.resp_hist:
return return
wallet = window.wallet wallet = window.wallet
tx_list = self.wallet_tx_list.get(wallet) tx_list = self.wallet_tx_list.get(wallet)
if not wallet or not tx_list: if not wallet or not tx_list:
continue return
window.is_edit = True window.is_edit = True
window.history_list.setColumnCount(7) window.history_list.setColumnCount(7)
window.history_list.setHeaderLabels([ '', '', _('Date'), _('Description') , _('Amount'), _('Balance'), _('Fiat Amount')] ) window.history_list.setHeaderLabels([ '', '', _('Date'), _('Description') , _('Amount'), _('Balance'), _('Fiat Amount')] )

Loading…
Cancel
Save