Correct filter specification

pull/10154/merge
Toshio Kuratomi 10 years ago
parent 8fd7f4b121
commit 788e47b693

@ -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,

Loading…
Cancel
Save