diff options
author | alalazo <massimiliano.culpo@googlemail.com> | 2016-04-12 16:54:51 +0200 |
---|---|---|
committer | alalazo <massimiliano.culpo@googlemail.com> | 2016-04-12 16:54:51 +0200 |
commit | 80678b2188acb30638e33b86a894d133ce4b4796 (patch) | |
tree | 195d20337cbe4dcd037d5559b3c11bac905abf08 /bin | |
parent | e73caad0d76fe8710ae054f4bcdbad1a649dbb92 (diff) | |
download | spack-80678b2188acb30638e33b86a894d133ce4b4796.tar.gz spack-80678b2188acb30638e33b86a894d133ce4b4796.tar.bz2 spack-80678b2188acb30638e33b86a894d133ce4b4796.tar.xz spack-80678b2188acb30638e33b86a894d133ce4b4796.zip |
fix : proper update of config file (before it was discarding architectures that were not the current one) fixes #774
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') |