mirror of
https://github.com/zoffline/zwift-offline.git
synced 2026-08-03 09:21:33 -07:00
Fix for players not removed from online
utcnow instead of just now in datetimes Signup not fits on windows client with message
This commit is contained in:
@@ -16,7 +16,7 @@ MAPS = [ 'FRANCE' ] + [ 'INNSBRUCK' ] + [ 'LONDON' ] * 2 + [ 'NEWYORK' ] * 2 + [
|
||||
dom = minidom.parseString('<MapSchedule><appointments></appointments><VERSION>1</VERSION></MapSchedule>')
|
||||
appts = dom.getElementsByTagName('appointments')[0]
|
||||
|
||||
now = datetime.datetime.now()
|
||||
now = datetime.datetime.utcnow()
|
||||
prev_map = None
|
||||
for i in range(0, 500):
|
||||
map_choice = random.choice(MAPS)
|
||||
|
||||
Reference in New Issue
Block a user