diff options
Diffstat (limited to 'backend/lib/sync.py')
-rw-r--r-- | backend/lib/sync.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/backend/lib/sync.py b/backend/lib/sync.py index 6dcb6b9..a6aef23 100644 --- a/backend/lib/sync.py +++ b/backend/lib/sync.py @@ -26,7 +26,6 @@ def sync_categories(): def sync_packages(): for category in Category.query.all(): existing_packages = category.packages.all() - print("Existing packages in DB for category %s: %s" % (category.name, existing_packages,)) data = http_session.get(url_base + "categories/" + category.name + ".json") if not data: print("No JSON data for category %s" % category.name) # FIXME: Better handling; mark category as inactive/gone? |