Merge pull request #5 from farseerfc/master

escape aurname in url
This commit is contained in:
依云 2015-05-11 12:46:45 +08:00
commit 4b5b037b9e
1 changed files with 2 additions and 1 deletions

View File

@ -3,6 +3,7 @@ import json
import logging
from tornado.httpclient import AsyncHTTPClient
from tornado.escape import url_escape
AUR_URL = 'https://aur.archlinux.org/rpc.php?type=info&arg='
@ -10,7 +11,7 @@ logger = logging.getLogger(__name__)
def get_version(name, conf, callback):
aurname = conf.get('aur') or name
url = AUR_URL + aurname
url = AUR_URL + url_escape(aurname)
AsyncHTTPClient().fetch(url, partial(_aur_done, name, callback))
def _aur_done(name, callback, res):