Commit 5c6684f3 authored by Éric Araujo's avatar Éric Araujo

Packaging: use repr to display projects name (3ebabfbf6fe3 followup)

parent 577a6af8
......@@ -520,7 +520,7 @@ def install(project):
except InstallationConflict as e:
if logger.isEnabledFor(logging.INFO):
projects = ['%s %s' % (p.name, p.version) for p in e.args[0]]
projects = ['%r %s' % (p.name, p.version) for p in e.args[0]]
logger.info('%r conflicts with %s', project, ','.join(projects))
return True
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment