An extra comma was causing certain debug messages to blow up

This commit is contained in:
Donald Stufft 2014-12-29 12:53:45 -05:00
parent 630b4c0542
commit b0e660fe91
1 changed files with 1 additions and 1 deletions

View File

@ -505,7 +505,7 @@ class PackageFinder(object):
if applicable_versions[0].location is INSTALLED_VERSION:
# We have an existing version, and its the best version
logger.debug(
'Installed version (%s) is most up-to-date (past versions: ',
'Installed version (%s) is most up-to-date (past versions: '
'%s)',
req.satisfied_by.version,
', '.join(str(i.version) for i in applicable_versions[1:])