diff options
| author | stilbruch <stilbruch@protonail.com> | 2022-05-09 17:57:02 -0500 |
|---|---|---|
| committer | stilbruch <stilbruch@protonail.com> | 2022-05-09 17:57:02 -0500 |
| commit | 9ba45476efa21791c2c69a083d90785a436435f7 (patch) | |
| tree | bff7e5d7abb152674e1f66bd2571474204a864a9 /app/routes/workout.py | |
| parent | d1f8adc797c3c6edd63b34d2da734783d9720138 (diff) | |
| download | Strengthy-9ba45476efa21791c2c69a083d90785a436435f7.tar.xz Strengthy-9ba45476efa21791c2c69a083d90785a436435f7.zip | |
Fix float lbs bug
Diffstat (limited to 'app/routes/workout.py')
| -rw-r--r-- | app/routes/workout.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/app/routes/workout.py b/app/routes/workout.py index e27cee8..767603e 100644 --- a/app/routes/workout.py +++ b/app/routes/workout.py @@ -131,6 +131,7 @@ def workout_record(workout_id=None): return redirect(url_for("home")) else: + print(form.errors) # Populate form with data for exercise in workout.exercises: form.exercises.append_entry( |
