소스 검색

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


불러오는 중...
취소
저장