Fix PEP8 error

This commit is contained in:
Joachim Lusiardi 2016-04-28 22:33:14 +02:00
parent 60293d6a27
commit ef976299dc
1 changed files with 1 additions and 1 deletions

View File

@ -179,7 +179,7 @@ def create_pit_stop_form(vid):
form.litres.default = last_pitstop.litres form.litres.default = last_pitstop.litres
form.date.default = date.today() form.date.default = date.today()
form.process() form.process()
return render_template('newPitStopForm.html', form=form, vehicle = vehicle) return render_template('newPitStopForm.html', form=form, vehicle=vehicle)
@app.route('/pitstops', methods=['GET']) @app.route('/pitstops', methods=['GET'])