Skip to content
Snippets Groups Projects
Commit a3b4ccbe authored by Yuya Nishihara's avatar Yuya Nishihara
Browse files

help: correct signature of separate() template function

Without the dots, it looked as if separate() would take a list of arguments.
parent 5b831053
No related branches found
No related tags found
Loading
......@@ -555,7 +555,7 @@
return minirst.format(text, style=style, keep=['verbose'])
@templatefunc('separate(sep, args)', argspec='sep *args')
@templatefunc('separate(sep, args...)', argspec='sep *args')
def separate(context, mapping, args):
"""Add a separator between non-empty arguments."""
if 'sep' not in args:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment