Flake8 compliance.

pull/7/head
Ferry Boender 10 years ago
parent efbffea672
commit 0ebdcc87f9
  1. 17
      src/scriptform.py

@ -17,7 +17,6 @@ import BaseHTTPServer
from BaseHTTPServer import BaseHTTPRequestHandler
from SocketServer import ThreadingMixIn
import cgi
import re
import datetime
import subprocess
import base64
@ -179,7 +178,6 @@ class ScriptForm:
path = self.config_file
config = json.load(file(path, 'r'))
title = config['title']
forms = []
callbacks = self.callbacks
users = None
@ -231,6 +229,7 @@ class ScriptForm:
# same thread.
raise SystemExit()
class FormConfig:
"""
FormConfig is the in-memory representation of a form configuration JSON
@ -562,7 +561,7 @@ class WebAppHandler(BaseHTTPRequestHandler):
self.send_error(404, "Not found")
return
method_cb(**params)
except Exception, e:
except Exception:
self.send_error(500, "Internal server error")
raise
@ -711,10 +710,7 @@ class ScriptFormWebApp(WebAppHandler):
cols
)
elif field['type'] == 'select':
options = ''.join([
tpl.format(o[0], o[1]) for o in field['options']
]
)
options = ''.join([tpl.format(o[0], o[1]) for o in field['options']])
input = '<select {0} name="{1}">{2}</select>'.format(required, field['name'], options)
else:
raise ValueError("Unsupported field type: {0}".format(
@ -726,12 +722,9 @@ class ScriptFormWebApp(WebAppHandler):
<p class="form-field-title">{title}</p>
<p class="form-field-input">{input} <span class="error">{errors}</span></p>
</li>
'''.format(
title=field['title'],
'''.format(title=field['title'],
input=input,
errors=', '.join(errors)
)
)
errors=', '.join(errors)))
# Make sure the user is allowed to access this form.
form_def = form_config.get_form_def(form_name)

Loading…
Cancel
Save