##// END OF EJS Templates
test-template-engine: do not evaluate unused keywords by custom engine...
Yuya Nishihara -
r36989:ff9cb706 default
parent child Browse files
Show More
@@ -16,8 +16,7 b''
16 16 > props = self._defaults.copy()
17 17 > props.update(map)
18 18 > for k, v in props.items():
19 > if k in (b'templ', b'ctx', b'repo', b'revcache', b'cache',
20 > b'troubles'):
19 > if b'{{%s}}' % k not in tmpl:
21 20 > continue
22 21 > if callable(v) and getattr(v, '_requires', None) is None:
23 22 > props = self._resources.copy()
General Comments 0
You need to be logged in to leave comments. Login now