mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-31 17:31:36 +00:00
Unneeded exception raised. sys.exit returns before exception ever gets a chance to be thrown.
This commit is contained in:
parent
9fc4e1a1b1
commit
2b96b6dec1
1 changed files with 1 additions and 1 deletions
2
electrum
2
electrum
|
@ -167,7 +167,7 @@ if __name__ == '__main__':
|
|||
except ImportError:
|
||||
import electrum.gui_lite as gui
|
||||
else:
|
||||
raise NameError(sys.exit("Error: Unknown GUI: " + options.gui))
|
||||
sys.exit("Error: Unknown GUI: " + options.gui)
|
||||
|
||||
gui = gui.ElectrumGui(wallet)
|
||||
WalletSynchronizer(wallet,True).start()
|
||||
|
|
Loading…
Add table
Reference in a new issue