update a few scripts
[electrum-nvc.git] / electrum
index 15c9f63..38a2433 100755 (executable)
--- a/electrum
+++ b/electrum
@@ -18,7 +18,7 @@
 
 import re
 import pkgutil
-import sys, os, time, json
+import sys, os, time, json, readline
 import optparse
 import platform
 from decimal import Decimal
@@ -120,6 +120,7 @@ if __name__ == '__main__':
     options, args = parser.parse_args()
     if options.portable and options.wallet_path is None:
         options.wallet_path = os.path.join(os.path.dirname(os.path.realpath(__file__)), 'electrum.dat')
+
     set_verbosity(options.verbose)
 
     # config is an object passed to the various constructors (wallet, interface, gui)
@@ -130,7 +131,6 @@ if __name__ == '__main__':
         for k, v in config_options.items():
             if v is None: config_options.pop(k)
 
-
     config = SimpleConfig(config_options)
 
     if len(args)==0: