"list staffers pdf"

This commit is contained in:
Doug Le Tough 2018-05-09 10:28:22 +02:00
parent e313608090
commit c4039eed27
1 changed files with 2 additions and 2 deletions

View File

@ -1068,9 +1068,9 @@ def print_users():
return sstaffers
# User is not admin
return render_template('login_or_register.html', message="Utilisateur ou mot de passe invalide")
except:
except Exception as e:
# User is not logged in
return render_template('login_or_register.html', message="Utilisateur ou mot de passe invalide")
return render_template('login_or_register.html', message="%s" % e)
@app.route("/account/<ID>", methods=['GET', 'POST'])