Commit 788e47b6 by Toshio Kuratomi

Correct filter specification

parent 8fd7f4b1
...@@ -329,11 +329,11 @@ class FilterModule(object): ...@@ -329,11 +329,11 @@ class FilterModule(object):
'from_yaml': yaml.safe_load, 'from_yaml': yaml.safe_load,
# path # path
'basename': unicode_wrap(os.path.basename), 'basename': partial(unicode_wrap, os.path.basename),
'dirname': unicode_wrap(os.path.dirname), 'dirname': partial(unicode_wrap, os.path.dirname),
'expanduser': unicode_wrap(os.path.expanduser), 'expanduser': partial(unicode_wrap, os.path.expanduser),
'realpath': unicode_wrap(os.path.realpath), 'realpath': partial(unicode_wrap, os.path.realpath),
'relpath': unicode_wrap(os.path.relpath), 'relpath': partial(unicode_wrap, os.path.relpath),
# failure testing # failure testing
'failed' : failed, 'failed' : failed,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment