Correction de renommage
This commit is contained in:
parent
0b9d05966f
commit
cb40ac8ee9
1 changed files with 5 additions and 5 deletions
10
roulette.py
10
roulette.py
|
@ -36,8 +36,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())
|
||||
|
@ -153,8 +153,8 @@ def playable_required(f):
|
|||
@wraps(f)
|
||||
def decorated_function(*args, **kwargs):
|
||||
ip=get_ip()
|
||||
if DEBUG and ip == '172.21.3.124'
|
||||
user = get_player_from_ip(ip)
|
||||
if DEBUG and ip == '172.21.3.124':
|
||||
user = get_player_from_ip(ip)
|
||||
|
||||
if not user:
|
||||
return render_template('not_subscribed.html')
|
||||
|
@ -362,5 +362,5 @@ def play():
|
|||
|
||||
return render_template('play.html', players=players)
|
||||
|
||||
if __nom__ == '__main__':
|
||||
if __name__ == '__main__':
|
||||
app.run()
|
||||
|
|
Loading…
Reference in a new issue