소스 검색

Fix missing import.

tags/v1.0^2
Ben Kurtovic 10 년 전
부모
커밋
fd3a8b1598
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. +2
    -1
      app.py

+ 2
- 1
app.py 파일 보기

@@ -8,6 +8,7 @@ from flask import Flask, make_response, render_template, request

from bitshift import assets
from bitshift.database import Database
from bitshift.languages import LANGS
from bitshift.query import parse_query, QueryParseException

app = Flask(__name__)
@@ -21,7 +22,7 @@ database = Database()

@app.route("/")
def index():
return render_template("index.html", typeahead_languages=languages.LANGS)
return render_template("index.html", typeahead_languages=LANGS)

@app.route("/search.json")
def search():


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