From f602306aa7a547bf488fd901c010faed1225b206 Mon Sep 17 00:00:00 2001 From: Paul Franklin Date: Sun, 27 Nov 2011 20:19:44 +0000 Subject: [PATCH] change string syntax svn: r18518 --- src/cli/plug/__init__.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/cli/plug/__init__.py b/src/cli/plug/__init__.py index aad44b29a..a35e47699 100644 --- a/src/cli/plug/__init__.py +++ b/src/cli/plug/__init__.py @@ -401,8 +401,8 @@ class CommandLineReport(object): self.options_help[name].append(option.get_help()) else: print _("Unknown option: %s") % option - print (_(" Valid options are:"), - ", ".join(self.options_dict.keys())) + print _(" Valid options are:"), ", ".join( + self.options_dict.keys()) print (_(" Use '%(donottranslate)s' to see description " "and acceptable values") % {'donottranslate' : "show=option"}) @@ -431,8 +431,8 @@ class CommandLineReport(object): else: print _("Ignoring unknown option: %s") % opt - print (_(" Valid options are:"), - ", ".join(self.options_dict.keys())) + print _(" Valid options are:"), ", ".join( + self.options_dict.keys()) print (_(" Use '%(donottranslate)s' to see description " "and acceptable values") % {'donottranslate' : "show=option"})