mirror of
https://github.com/TitanEmbeds/Titan.git
synced 2024-11-15 02:21:21 +01:00
Fix admin voting hour computation to 12 hour time
This commit is contained in:
parent
d7590a2915
commit
5552b8d340
@ -391,8 +391,8 @@ def voting_get():
|
||||
timeend = request.args.get("timeend")
|
||||
if not datestart or not timestart or not dateend or not timeend:
|
||||
return render_template("admin_voting.html.j2")
|
||||
start = datetime.datetime.strptime(datestart + " " + timestart, '%d %B, %Y %H:%M%p')
|
||||
end = datetime.datetime.strptime(dateend + " " + timeend, '%d %B, %Y %H:%M%p')
|
||||
start = datetime.datetime.strptime(datestart + " " + timestart, '%d %B, %Y %I:%M%p')
|
||||
end = datetime.datetime.strptime(dateend + " " + timeend, '%d %B, %Y %I:%M%p')
|
||||
users = db.session.query(DiscordBotsOrgTransactions).filter(DiscordBotsOrgTransactions.timestamp >= start, DiscordBotsOrgTransactions.timestamp <= end).order_by(DiscordBotsOrgTransactions.timestamp)
|
||||
all_users = []
|
||||
for u in users:
|
||||
|
Loading…
Reference in New Issue
Block a user