From 9632898b403ba3802ef2663d8c6316b43c557c48 Mon Sep 17 00:00:00 2001 From: Nick Douma Date: Thu, 6 Aug 2020 15:40:11 +0200 Subject: [PATCH] Domains should not be updated in update_accounts.py --- update_accounts.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/update_accounts.py b/update_accounts.py index 1229c16..0578ce0 100644 --- a/update_accounts.py +++ b/update_accounts.py @@ -15,7 +15,6 @@ import logging from powerdnsadmin import create_app from powerdnsadmin.models.account import Account -from powerdnsadmin.models.domain import Domain from powerdnsadmin.models.setting import Setting app = create_app() @@ -30,4 +29,3 @@ with app.app_context(): sys.exit(1) Account().update() - Domain().update()