# HG changeset patch # User Aurelien Campeas # Date 1252921110 -7200 # Node ID 1366cacd53877e6b7739cf2ef48b38c677c2aa52 # Parent 747d17498cca321a3d5d23aaaa479bb358877a6b# Parent 241ae91e9ab7cf3de5c9264db89d0d587b592d5f merge diff -r 747d17498cca -r 1366cacd5387 common/i18n.py --- a/common/i18n.py Mon Sep 14 11:32:07 2009 +0200 +++ b/common/i18n.py Mon Sep 14 11:38:30 2009 +0200 @@ -45,7 +45,7 @@ """ print cmd.replace(os.getcwd() + os.sep, '') from subprocess import call - status = call(cmd) + status = call(cmd, shell=True) if status != 0: raise Exception('status = %s' % status) diff -r 747d17498cca -r 1366cacd5387 common/migration.py --- a/common/migration.py Mon Sep 14 11:32:07 2009 +0200 +++ b/common/migration.py Mon Sep 14 11:38:30 2009 +0200 @@ -228,7 +228,10 @@ else: readline.set_completer(Completer(local_ctx).complete) readline.parse_and_bind('tab: complete') - histfile = os.path.join(os.environ["HOME"], ".eshellhist") + home_key = 'HOME' + if sys.platform == 'win32': + home_key = 'USERPROFILE' + histfile = os.path.join(os.environ[home_key], ".eshellhist") try: readline.read_history_file(histfile) except IOError: