From a4d7e26ab41982587bc4d81f11a97dbc0f3c6172 Mon Sep 17 00:00:00 2001 From: Nikos Kouremenos Date: Sun, 28 Aug 2005 17:49:51 +0000 Subject: [PATCH] [paladine] fix a typo --- scripts/gajim-remote.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/gajim-remote.py b/scripts/gajim-remote.py index af5ef0dda..6324f0910 100755 --- a/scripts/gajim-remote.py +++ b/scripts/gajim-remote.py @@ -297,7 +297,7 @@ Please specify account for sending the message.') % sys.argv[2]) for key in prop_dict.keys(): val = prop_dict[key] spacing = ' ' * level * 4 - elif type(val) in (unicode, int, str): + if type(val) in (unicode, int, str): if val is not None: val = val.strip() ret_str += '%s%-10s: %s\n' % (spacing, key, val)