aboutsummaryrefslogtreecommitdiff
path: root/manager.py
diff options
context:
space:
mode:
Diffstat (limited to 'manager.py')
-rwxr-xr-xmanager.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/manager.py b/manager.py
index 5b30b074..5aedbe18 100755
--- a/manager.py
+++ b/manager.py
@@ -17,14 +17,14 @@ def db_empty():
"Will drop every datas stocked in db."
with application.app_context():
populate_g()
- jarr.models.db_empty(db)
+ web.models.db_empty(db)
@manager.command
def db_create():
"Will create the database from conf parameters."
with application.app_context():
populate_g()
- jarr.models.db_create(db)
+ web.models.db_create(db)
@manager.command
def fetch(limit=100, retreive_all=False):
bgstack15