Use the newer python syntax for exceptions
authorJustin Bogner <mail@justinbogner.com>
Sat, 13 Dec 2014 02:46:56 +0000 (02:46 +0000)
committerJustin Bogner <mail@justinbogner.com>
Sat, 13 Dec 2014 02:46:56 +0000 (02:46 +0000)
We've dropped support for python 2.5, so now we can use the forward
compatible "except ... as" syntax.

llvm-svn: 224181

compiler-rt/test/lit.common.configured.in
compiler-rt/unittests/lit.common.unit.configured.in

index beecaa2..ceab67d 100644 (file)
@@ -30,7 +30,7 @@ set_default("emulator", "@COMPILER_RT_EMULATOR@")
 # apply substitution.
 try:
   config.llvm_tools_dir = config.llvm_tools_dir % lit_config.params
-except KeyError,e:
+except KeyError as e:
   key, = e.args
   lit_config.fatal("unable to find %r parameter, use '--param=%s=VALUE'" % (key, key))
 
index ab5c253..18adf64 100644 (file)
@@ -17,7 +17,7 @@ config.host_os = "@HOST_OS@"
 try:
   config.llvm_tools_dir = config.llvm_tools_dir % lit_config.params
   config.llvm_build_mode = config.llvm_build_mode % lit_config.params
-except KeyError,e:
+except KeyError as e:
   key, = e.args
   lit_config.fatal("unable to find %r parameter, use '--param=%s=VALUE'" % (key, key))