From cab497c1b0d7bb8938d5a733860ecada11dec363 Mon Sep 17 00:00:00 2001 From: Ian Weller Date: Sun, 30 Mar 2008 17:52:06 +0000 Subject: [PATCH] comma shouldn't be added to end of url, i guess --- plugin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin.py b/plugin.py index d62b4d4..b40fd0c 100644 --- a/plugin.py +++ b/plugin.py @@ -59,7 +59,7 @@ class Miniqdb(callbacks.Plugin): quote = dom.getElementsByTagName('miniqdb')[0].getElementsByTagName('quote')[0] lines = int(quote.getAttribute('lines')) if lines > maxlines: - reply = root+'/quote.php?id='+str(id) + ', ' + str(lines) + ' lines' + reply = root+'/quote.php?id='+str(id) + ' (' + str(lines) + ' lines)' else: reply = quote.firstChild.data.replace('<','<').replace('>','>') for line in reply.split('\n'): -- 2.11.4.GIT