Merge "Avoid using built-in function name"
This commit is contained in:
commit
bab51c88b5
@ -72,6 +72,6 @@ def pipeline_factory(loader, global_conf, **local_conf):
|
||||
filters = [loader.get_filter(n) for n in pipeline[:-1]]
|
||||
app = loader.get_app(pipeline[-1])
|
||||
filters.reverse()
|
||||
for filter in filters:
|
||||
app = filter(app)
|
||||
for f in filters:
|
||||
app = f(app)
|
||||
return app
|
||||
|
Loading…
Reference in New Issue
Block a user