From b2b889e39cb72ca51ab60d4bf44ae002b06ba878 Mon Sep 17 00:00:00 2001 From: Peter Landgren Date: Thu, 4 Mar 2010 14:09:40 +0000 Subject: [PATCH] Fixed another three problems with string formatting using {}. svn: r14616 --- src/plugins/tool/Check.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/plugins/tool/Check.py b/src/plugins/tool/Check.py index ecc3dbbca..cc2c3ed82 100644 --- a/src/plugins/tool/Check.py +++ b/src/plugins/tool/Check.py @@ -1472,8 +1472,8 @@ class CheckIntegrity(object): except: pn = _("Unknown") self.text.write('\t') - self.text.write(_("%(person)s was removed from the family of %(family)s\n")) % { - 'person' : cn, 'family' : pn } + self.text.write(_("%(person)s was removed from the family of %(family)s\n") % { + 'person' : cn, 'family' : pn } ) if plink > 0: self.text.write(ngettext("%(quantity)d broken spouse/family link was fixed\n", @@ -1491,8 +1491,8 @@ class CheckIntegrity(object): else: pn = family_handle self.text.write('\t') - self.text.write(_("%(person)s was restored to the family of %(family)s\n")) % { - 'person' : cn, 'family' : pn } + self.text.write(_("%(person)s was restored to the family of %(family)s\n") % { + 'person' : cn, 'family' : pn } ) if slink > 0: self.text.write(ngettext("%(quantity)d duplicate spouse/family link was found\n", \ @@ -1509,8 +1509,8 @@ class CheckIntegrity(object): else: pn = _("None") self.text.write('\t') - self.text.write(_("%(person)s was restored to the family of %(family)s\n")) % { - 'person' : cn, 'family' : pn } + self.text.write(_("%(person)s was restored to the family of %(family)s\n") % { + 'person' : cn, 'family' : pn } ) if efam == 1: self.text.write(_("%d family with no parents or children found, removed.\n"))