return the task generator instance (much more intuitive)

This commit is contained in:
Thomas Nagy 2012-09-15 21:27:50 +02:00
parent 54e3a901dd
commit 41c52e3f4e
1 changed files with 1 additions and 1 deletions

View File

@ -176,7 +176,7 @@ class BuildContext(Context.Context):
rule = bar,
)
"""
return lambda rule: self(*k, rule=rule, **kw)
return self(*k, rule=rule, **kw)
def __copy__(self):
"""Implemented to prevents copies of build contexts (raises an exception)"""