浏览代码

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():


正在加载...
取消
保存