diff options
author | Todd Gamblin <tgamblin@llnl.gov> | 2016-05-10 01:35:56 -0700 |
---|---|---|
committer | Todd Gamblin <tgamblin@llnl.gov> | 2016-05-10 01:35:56 -0700 |
commit | 8ce45d2161030b84ed2ca7feaa37695c60a07675 (patch) | |
tree | 110f1ad1e5021a186cc177a723ff838a36e028b3 /bin | |
parent | a1ebdf63f398800427d05f0d8ada4860b745cb82 (diff) | |
parent | 27280ea8be8e108b8d128ab518d4562ec0368684 (diff) | |
download | spack-8ce45d2161030b84ed2ca7feaa37695c60a07675.tar.gz spack-8ce45d2161030b84ed2ca7feaa37695c60a07675.tar.bz2 spack-8ce45d2161030b84ed2ca7feaa37695c60a07675.tar.xz spack-8ce45d2161030b84ed2ca7feaa37695c60a07675.zip |
Merge pull request #775 from epfl-scitas/fixes/config_update
fix: proper update of config file
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/spack | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -152,7 +152,7 @@ def main(): command = spack.cmd.get_command(args.command) try: return_val = command(parser, args) - except SpackError, e: + except SpackError as e: e.die() except KeyboardInterrupt: sys.stderr.write('\n') |