From 475918a5130f5eca18266f907adff1036f3199fc Mon Sep 17 00:00:00 2001 From: Nico Weber Date: Wed, 3 Dec 2014 08:10:44 -0800 Subject: Make configure.py work with Python. Fixes issue #877. Patch from @TheOneRing! --- configure.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.py b/configure.py index aac4ad4..3cd1e82 100755 --- a/configure.py +++ b/configure.py @@ -164,7 +164,7 @@ class Bootstrap: """Run a subcommand, quietly. Prints the full command on error.""" try: subprocess.check_call(cmdline, shell=True) - except subprocess.CalledProcessError, e: + except subprocess.CalledProcessError: print('when running: ', cmdline) raise -- cgit v0.12