From 29948306bedca81fd85eb6f2978adbb454ca84db Mon Sep 17 00:00:00 2001 From: Richard Quirk Date: Sat, 24 Dec 2011 10:15:53 +0100 Subject: Fix incorrect UserError usage SCons.Errors.UserError has not been imported, so prior to this patch the code would have caused a NameError. --- src/engine/SCons/Action.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/engine/SCons/Action.py b/src/engine/SCons/Action.py index 6909a9a..c1eef75 100644 --- a/src/engine/SCons/Action.py +++ b/src/engine/SCons/Action.py @@ -899,7 +899,7 @@ class CommandGeneratorAction(ActionBase): show=_null, execute=_null, chdir=_null, executor=None): act = self._generate(target, source, env, 0, executor) if act is None: - raise UserError("While building `%s': " + raise SCons.Errors.UserError("While building `%s': " "Cannot deduce file extension from source files: %s" % (repr(list(map(str, target))), repr(list(map(str, source))))) return act(target, source, env, exitstatfunc, presub, -- cgit v0.12