289 } |
289 } |
290 ] |
290 ] |
291 |
291 |
292 if filename.endswith(".ptl"): |
292 if filename.endswith(".ptl"): |
293 try: |
293 try: |
294 import quixote.ptl_compile # __IGNORE_WARNING_I10__ |
294 import quixote.ptl_compile # __IGNORE_WARNING_I-10__ |
295 except ImportError: |
295 except ImportError: |
296 return [ |
296 return [ |
297 {"error": (filename, 0, 0, "", "Quixote plugin not found.")} |
297 {"error": (filename, 0, 0, "", "Quixote plugin not found.")} |
298 ] |
298 ] |
299 template = quixote.ptl_compile.Template(codestring, filename) |
299 template = quixote.ptl_compile.Template(codestring, filename) |