aboutsummaryrefslogtreecommitdiff
path: root/manager.py
diff options
context:
space:
mode:
Diffstat (limited to 'manager.py')
-rwxr-xr-xmanager.py2
1 files changed, 1 insertions, 1 deletions
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
bgstack15