Your ROOT_URL in app.ini is https://source.parasitstudio.de:63000/ but you are visiting https://source.parasitstudio.de/wirtz/scriptform/commit/871d22167e953564b4a37758fa1121045c9e9114 You should set ROOT_URL correctly, otherwise the web may not work correctly.

Ignore non-existing temp files in upload cleanup.

pull/7/head
Ferry Boender 10 years ago
parent 7ce6bc8b12
commit 871d22167e
  1. 6
      src/scriptform.py

@ -2,8 +2,6 @@
# Todo:
#
# - file uploads should be saved to temp files and passed to the callback.
# - Ignore non-existing temp files in upload cleanup.
# - How does script_raw check the exitcode? Document this.
# - Validate field values properly.
# * Integer/float min, max
@ -516,9 +514,9 @@ class ScriptFormWebApp(WebAppHandler):
self.wfile.write(output)
finally:
# Clean up uploaded files
# FIXME: Catch exceptions and such)
for file_name in file_fields.values():
os.unlink(file_name)
if os.path.exists(file_name):
os.unlink(file_name)
class ScriptForm:
"""

Loading…
Cancel
Save