diff options
Diffstat (limited to 'cli/app/controllers/crud_controller.py')
| -rw-r--r-- | cli/app/controllers/crud_controller.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/app/controllers/crud_controller.py b/cli/app/controllers/crud_controller.py index 7692d26..c1bde8d 100644 --- a/cli/app/controllers/crud_controller.py +++ b/cli/app/controllers/crud_controller.py @@ -108,7 +108,7 @@ class CrudView(FlaskView): if item: raw_form = MultiDict(request.json) if request.json is not None else request.form form = self.form(raw_form, obj=item) - print(item.toJSON()) + # print(item.toJSON()) if form.validate(): form.populate_obj(item) self.on_update(session, raw_form, item) |
