Commit c94d3adcdfe7a6fa14e2911f1dfa95c83f5fdf7b

Fix typo

  Horrible mistake of not typing the correct variable names.
server.py
(3 / 4)
  
4343@app.route('/', methods=['GET'])
4444def index():
4545 return flask.render_template('index.html', content=getContent(),
46 title=config.SITE_TITLE)
46 title=conf.SITE_TITLE)
4747
4848
4949@app.route('/edit', methods=['GET'])
5050def edit():
5151 return flask.render_template('editor.html', content=getContent(),
52 title=config)
52 title=conf)
5353
5454
5555@app.route('/page', methods=['POST'])
117117
118118
119119if __name__ == "__main__":
120 print config
121 app.run(debug=True, host=config.HOST, port=config.PORT)
120 app.run(debug=True, host=conf.HOST, port=conf.PORT)