URI: 
       tos path join - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit de21e2297ef687d7967111682bb1219845bb052a
   DIR parent dcd73df929f0d0d238c4a0a90afcf2dbdf19a21a
  HTML Author: ecdsa <ecdsa@github>
       Date:   Sat, 20 Apr 2013 18:21:51 +0200
       
       os path join
       
       Diffstat:
         M electrum                            |       2 +-
       
       1 file changed, 1 insertion(+), 1 deletion(-)
       ---
   DIR diff --git a/electrum b/electrum
       t@@ -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)