Explorar el Código

Pass empty result dict on initial page load.

master
Ben Kurtovic hace 8 años
padre
commit
cef8959541
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      app.fcgi

+ 1
- 1
app.fcgi Ver fichero

@@ -15,7 +15,7 @@ set_up_hash_caching(app)
@catch_errors(app)
def index():
title = request.args.get("title")
result = calculate_tif(title) if title else None
result = calculate_tif(title) if title else {}
return render_template("index.mako", result=result)

if __name__ == '__main__':


Cargando…
Cancelar
Guardar