(dp1 S'output' p2 S'' sS'layer' p3 S'/home/acrowe/lib/python/web2py/applications/turtle_art_images/controllers/default.py' p4 sS'code' p5 S"import os\nfrom applications.turtle_art_images.modules.PngGenerator import TurtleMain\n\ndef index():\n newta = db().select(db.comment.file)\n TurtleMain()\n if len(request.args):\n records = db(db.comment.image_id==request.args[0]).select()\n if len(request.args) and len(records):\n form = SQLFORM(db.comment, records[0], deletable=True)\n else:\n form = SQLFORM(db.comment, fields = ['title', 'file', 'creator', 'description'])\n if form.accepts(request.vars, session):\n response.flash = 'form accepted'\n elif form.errors:\n response.flash = 'form has errors'\n return dict(form=form)\n\ndef jamiesprogram():\n os.system('python PngGenerator '+URL(request.application,'default','download',args=db.comment.file))\n return dict()\n \ndef imagelist():\n comments = db().select(db.comment.ALL)\n return dict(comments=comments)\n \ndef adminpage():\n db.comment.truncate()\n redirect('index.html')\n\ndef imagetemplate():\n return dict()\n \ndef download():\n return response.download(request, db)\n\nresponse._vars=response._caller(index)\n" p6 sS'traceback' p7 S'Traceback (most recent call last):\n File "/home/acrowe/lib/python/web2py/gluon/restricted.py", line 178, in restricted\n exec ccode in environment\n File "/home/acrowe/lib/python/web2py/applications/turtle_art_images/controllers/default.py", line 37, in \n File "/home/acrowe/lib/python/web2py/gluon/globals.py", line 96, in \n self._caller = lambda f: f()\n File "/home/acrowe/lib/python/web2py/applications/turtle_art_images/controllers/default.py", line 6, in index\n TurtleMain()\n File "/home/acrowe/lib/python/web2py/applications/turtle_art_images/modules/PngGenerator.py", line 52, in __init__\n if self.file[-3:] != ".ta": raise Exception("argument is not a TurtleArt file")\nException: argument is not a TurtleArt file\n' p8 s.