]> git.ipfire.org Git - thirdparty/jinja.git/commitdiff
Fix syntax error
authorMarkus Unterwaditzer <markus@unterwaditzer.net>
Thu, 2 Apr 2015 00:01:35 +0000 (02:01 +0200)
committerMarkus Unterwaditzer <markus@unterwaditzer.net>
Thu, 2 Apr 2015 00:01:35 +0000 (02:01 +0200)
jinja2/_compat.py

index 7f10316c1ffb6a620907e43c7894e273e6417e38..d8ca21537dd0914502281ff6e84533d4c2eb4264 100644 (file)
@@ -136,7 +136,7 @@ def _get_tbtype():
         return type(_tb), type(_tb.tb_frame)
 
 traceback_type, frame_type = _get_tbtype()
-del _get_tbtype()
+del _get_tbtype
 
 try:
     from urllib.parse import quote_from_bytes as url_quote