mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-27 15:31:31 +00:00
apply function directly unpacking argument list
This commit is contained in:
parent
32abe2dd04
commit
f0f3dc24e1
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Reference in a new issue