Browse Source

apply function directly unpacking argument list

master
vrde 12 years ago
parent
commit
f0f3dc24e1
  1. 2
      gui/gui_classic/main_window.py

2
gui/gui_classic/main_window.py

@ -472,7 +472,7 @@ class ElectrumWindow(QMainWindow):
return return
try: try:
apply(f, args) f(*args)
except: except:
print_error("Plugin error") print_error("Plugin error")
traceback.print_exc(file=sys.stdout) traceback.print_exc(file=sys.stdout)

Loading…
Cancel
Save