fixing fstring

This commit is contained in:
trhr 2020-04-16 06:14:03 -05:00
parent 518c21e661
commit f088207091
9 changed files with 18 additions and 18 deletions

View file

@ -131,7 +131,7 @@ class HelpEntryManager(TypedObjectManager):
for topic in topics:
topic.help_category = default_category
topic.save()
string = _("Help database moved to category {default_category}".format(default_category=default_category))
string = _("Help database moved to category {default_category}").format(default_category=default_category)
logger.log_info(string)
def search_help(self, ostring, help_category=None):