From a02761bbd4516a0d7dd764c195b32c6728849e57 Mon Sep 17 00:00:00 2001 From: Nathan Blaney Date: Mon, 5 Aug 2013 20:49:50 +1000 Subject: [PATCH] OK then --- plugins/qr.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/qr.py b/plugins/qr.py index 2c334cc..1867925 100644 --- a/plugins/qr.py +++ b/plugins/qr.py @@ -7,7 +7,7 @@ from util import hook, web, http def qrcode(inp, bot=None): "qrcode [link] returns a link for a QR code." - link = "http://blny.tk/qr.php?q=%s" % http.get_url(inp) + link = "http://blny.tk/qr.php?q=%s" % http.quote_plus(inp) try: return web.try_isgd(link)