From 3054d1233f56f97ac5f8ad39a8ed34df5bdbf370 Mon Sep 17 00:00:00 2001 From: Michael King Date: Sat, 28 Apr 2007 13:44:33 +0000 Subject: [PATCH] * Fixed interpolation statements to have tuples instead of a string --- commands_general.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/commands_general.py b/commands_general.py index 613a96fe67..7072f5adbf 100644 --- a/commands_general.py +++ b/commands_general.py @@ -250,9 +250,9 @@ def cmd_page(cdat): target.emit_to("% pages you with: %s" % (session.something, message)) session.get_pobject().emit_to("Page sent.") else: - session.get_pobject().emit_to("User %s is not logged on." % target_name.capitalize()) + session.get_pobject().emit_to("User %s is not logged on." % (target_name.capitalize(),)) except: - session.get_pobject().emit_to("User %s not found." % target_name) + session.get_pobject().emit_to("User %s not found." % (target_name,)) def cmd_quit(cdat): """