From 6595f7d54a721470ecdc42934a6e3b90566ffca9 Mon Sep 17 00:00:00 2001 From: Jonas Friedmann Date: Wed, 3 Jul 2013 14:55:06 +0200 Subject: [PATCH] Fix: Typo in web.py plugin --- plugins/util/web.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/util/web.py b/plugins/util/web.py index 046da41..0288aeb 100755 --- a/plugins/util/web.py +++ b/plugins/util/web.py @@ -21,7 +21,7 @@ class ShortenError(Exception): def isgd(url): - """ shortens a URL with the is.gd PAI """ + """ shortens a URL with the is.gd API """ url = urlnorm.normalize(url.encode('utf-8'), assume_scheme='http') params = urllib.urlencode({'format': 'json', 'url': url}) request = http.get_json("http://is.gd/create.php?%s" % params)