From a85711b2c797e83e8d1feea3d3fea7223d847e5e Mon Sep 17 00:00:00 2001 From: Mark Hammond Date: Fri, 6 Apr 2012 10:31:47 +1000 Subject: [PATCH] Bug 737245 followup: backout chunk of pymake that slipped in with this bug's patch. DONTBUILD --- build/pymake/pymake/process.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/build/pymake/pymake/process.py b/build/pymake/pymake/process.py index 427f6c63ee9..0fdd68bdbca 100644 --- a/build/pymake/pymake/process.py +++ b/build/pymake/pymake/process.py @@ -210,11 +210,7 @@ class PythonJob(Job): if self.method not in m.__dict__: print >>sys.stderr, "No method named '%s' in module %s" % (method, module) return -127 - try: - m.__dict__[self.method](self.argv) - except TypeError: - print >> sys.stderr, "FAILED calling %r in %r" % (self.method, m) - raise + m.__dict__[self.method](self.argv) except PythonException, e: print >>sys.stderr, e return e.exitcode