ソースを参照

Pass empty result dict on initial page load.

master
Ben Kurtovic 8年前
コミット
cef8959541
1個のファイルの変更1行の追加1行の削除
  1. +1
    -1
      app.fcgi

+ 1
- 1
app.fcgi ファイルの表示

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


読み込み中…
キャンセル
保存