[PATCH 4/4] Fix pwclient no-match messages
Dirk Wallenstein
halsmit at t-online.de
Thu Jan 13 20:05:09 EST 2011
Signed-off-by: Dirk Wallenstein <halsmit at t-online.de>
---
apps/patchwork/bin/pwclient | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/apps/patchwork/bin/pwclient b/apps/patchwork/bin/pwclient
index dba68fb..9d8cad9 100755
--- a/apps/patchwork/bin/pwclient
+++ b/apps/patchwork/bin/pwclient
@@ -173,7 +173,7 @@ def action_list(rpc, filter, submitter_str, delegate_str):
if submitter_str != "":
ids = person_ids_by_name(rpc, submitter_str)
if len(ids) == 0:
- sys.stderr.write("Note: Nobody found matching *%s*\n", \
+ sys.stderr.write("Note: Nobody found matching *%s*\n" % \
submitter_str)
else:
for id in ids:
@@ -190,7 +190,7 @@ def action_list(rpc, filter, submitter_str, delegate_str):
if delegate_str != "":
ids = person_ids_by_name(rpc, delegate_str)
if len(ids) == 0:
- sys.stderr.write("Note: Nobody found matching *%s*\n", \
+ sys.stderr.write("Note: Nobody found matching *%s*\n" % \
delegate_str)
else:
for id in ids:
--
1.7.3.2
More information about the Patchwork
mailing list