commit de21e2297ef687d7967111682bb1219845bb052a
parent dcd73df929f0d0d238c4a0a90afcf2dbdf19a21a
Author: ecdsa <ecdsa@github>
Date: Sat, 20 Apr 2013 18:21:51 +0200
os path join
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/electrum b/electrum
@@ -89,7 +89,7 @@ if __name__ == '__main__':
parser = arg_parser()
options, args = parser.parse_args()
if options.portable and options.wallet_path is None:
- options.wallet_path = os.path.dirname(os.path.realpath(__file__)) + '/electrum.dat'
+ 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)