Skip to content

Commit

Permalink
Fixed addition of time
Browse files Browse the repository at this point in the history
  • Loading branch information
daxartio committed Jun 13, 2018
1 parent 0e0bee4 commit 592e51c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sportorg/models/start/start_preparation.py
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,7 @@ def process_corridor(self, corridor, first_start, start_interval):
current_start = first_start
for current_person in persons:
current_person.start_time = current_start
current_start = current_start + timedelta(seconds=start_interval.second, minutes=start_interval.minute)
current_start = current_start + start_interval


def get_corridors():
Expand Down

0 comments on commit 592e51c

Please sign in to comment.