Fix syntax error

Change-Id: Icb037fbe25af7d51a442fa569612364b65f1edbf
This commit is contained in:
Joshua Harlow
2013-04-01 15:05:01 -07:00
parent 3ebb01ec1a
commit e727f86b75

View File

@@ -63,7 +63,7 @@ def find_pypi_match(req, pypi_url='http://python.org/pypi'):
try:
pypi = xmlrpclib.ServerProxy(pypi_url)
possibles = []
LOG.debug("Searching pypi @ %s for %s", , pypi_url, req)
LOG.debug("Searching pypi @ %s for %s", pypi_url, req)
for h in pypi.search({'name': req.key}):
if req.key == h.get('name', '').lower():
LOG.debug("Found potential match %s", h)