projects
/
jinja2.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3383e1c
)
Fixed a bug in the documentation tool
author
Armin Ronacher
<armin.ronacher@active-4.com>
Mon, 24 Jan 2011 00:14:20 +0000
(
01:14
+0100)
committer
Armin Ronacher
<armin.ronacher@active-4.com>
Mon, 24 Jan 2011 00:14:20 +0000
(
01:14
+0100)
docs/jinjaext.py
patch
|
blob
|
history
diff --git
a/docs/jinjaext.py
b/docs/jinjaext.py
index 66f4ba11652f5a255c6118cc58d63fcaadd2f838..12b544703d34a380964094fb992cdb72825215e1 100644
(file)
--- a/
docs/jinjaext.py
+++ b/
docs/jinjaext.py
@@
-92,7
+92,8
@@
def format_function(name, aliases, func):
try:
argspec = inspect.getargspec(func)
if getattr(func, 'environmentfilter', False) or \
- getattr(func, 'contextfilter', False):
+ getattr(func, 'contextfilter', False) or \
+ getattr(func, 'evalcontextfilter', False):
del argspec[0][0]
signature = inspect.formatargspec(*argspec)
except: