Correction

This commit is contained in:
guimoz 2017-01-28 16:40:27 +01:00
parent ffef53c61d
commit 93bee41461

View file

@ -43,8 +43,8 @@ IMMUNITY = [
ASSHOLES = []
app = Flask(__nom__)
app.config.from_object(__nom__)
app = Flask(__name__)
app.config.from_object(__name__)
app.secret_key = SECRET_KEY
random.seed(time())
@ -393,5 +393,5 @@ def play():
return render_template('play.html', players=players)
if __nom__ == '__main__':
if __name__ == '__main__':
app.run()