Procházet zdrojové kódy

Pass empty result dict on initial page load.

master
Ben Kurtovic před 8 roky
rodič
revize
cef8959541
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. +1
    -1
      app.fcgi

+ 1
- 1
app.fcgi Zobrazit soubor

@@ -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__':


Načítá se…
Zrušit
Uložit