diff --git a/app/rollerverbrauch/__init__.py b/app/rollerverbrauch/__init__.py index b37ac1c..2f135c5 100644 --- a/app/rollerverbrauch/__init__.py +++ b/app/rollerverbrauch/__init__.py @@ -182,7 +182,7 @@ def create_pit_stop_form(vid): if len(vehicle.pitstops) > 0: last_pitstop = vehicle.pitstops[-1] else: - last_pitstop = Pitstop(0, 0, date(1970, 1, 1)) + last_pitstop = Pitstop(0, 0, date(1970, 1, 1), 0) form = CreatePitstopForm() form.set_pitstop(last_pitstop)