Correction
This commit is contained in:
parent
ffef53c61d
commit
93bee41461
1 changed files with 3 additions and 3 deletions
|
@ -43,8 +43,8 @@ IMMUNITY = [
|
||||||
|
|
||||||
ASSHOLES = []
|
ASSHOLES = []
|
||||||
|
|
||||||
app = Flask(__nom__)
|
app = Flask(__name__)
|
||||||
app.config.from_object(__nom__)
|
app.config.from_object(__name__)
|
||||||
app.secret_key = SECRET_KEY
|
app.secret_key = SECRET_KEY
|
||||||
|
|
||||||
random.seed(time())
|
random.seed(time())
|
||||||
|
@ -393,5 +393,5 @@ def play():
|
||||||
|
|
||||||
return render_template('play.html', players=players)
|
return render_template('play.html', players=players)
|
||||||
|
|
||||||
if __nom__ == '__main__':
|
if __name__ == '__main__':
|
||||||
app.run()
|
app.run()
|
||||||
|
|
Loading…
Reference in a new issue