Your ROOT_URL in app.ini is https://source.parasitstudio.de:63000/ but you are visiting https://source.parasitstudio.de/wirtz/scriptform/commit/d8492b92698729444ebc30fb11b881a99a1b7caa?style=unified&whitespace=ignore-eol You should set ROOT_URL correctly, otherwise the web may not work correctly.

Typo bugfix.

pull/7/head
Ferry Boender 10 years ago
parent 198386efeb
commit d8492b9269
  1. 2
      src/scriptform.py

@ -871,7 +871,7 @@ class ScriptFormWebApp(WebAppHandler):
if field['type'] == 'radio':
if not form_values.get(field['name'], None):
params['value'] = field['options'][0][0]
params['options'] = field['options'],
params['options'] = field['options']
if field['type'] in ('radio', 'select'):
params['options'] = field['options']

Loading…
Cancel
Save