From ee54d07d2aadbaa618396d2ba6afe4526ccb4e1a Mon Sep 17 00:00:00 2001 From: Thomas Waldmann Date: Wed, 2 May 2018 13:46:22 +0200 Subject: [PATCH] fix placeholders in domains management script --- nsupdate/management/commands/domains.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nsupdate/management/commands/domains.py b/nsupdate/management/commands/domains.py index c260492..26ff7d7 100644 --- a/nsupdate/management/commands/domains.py +++ b/nsupdate/management/commands/domains.py @@ -40,9 +40,9 @@ hosts that were added to this domain (if any). """) -LOG_MSG_IS_AVAILABLE = _('Domain %%(domain)s is available.') +LOG_MSG_IS_AVAILABLE = _('Domain %(domain)s is available.') LOG_MSG_HAS_HOSTS = _('Domain %%(domain)s is not available, but has %(hosts)d hosts.') -LOG_MSG_DELETE = _('Domain %%(domain)s is not available and has no hosts -> deleted domain.') +LOG_MSG_DELETE = _('Domain %(domain)s is not available and has no hosts -> deleted domain.') def check_dns(domain):