From 07569ca2deae5d0ac2cc0f3298d68526dc05b9ff Mon Sep 17 00:00:00 2001 From: Cédric Bonhomme Date: Tue, 10 Mar 2020 15:04:45 +0100 Subject: fixed issues reported by flake8. --- manager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'manager.py') diff --git a/manager.py b/manager.py index bf935632..64fc38c1 100755 --- a/manager.py +++ b/manager.py @@ -24,7 +24,7 @@ manager.add_command("db", MigrateCommand) def db_empty(): "Will drop every datas stocked in db." with application.app_context(): - web.models.db_empty(db) + newspipe.models.db_empty(db) @manager.command -- cgit