Skip to content

Commit

Permalink
reflected the matters pointed out in review
Browse files Browse the repository at this point in the history
  • Loading branch information
aodag committed Feb 1, 2017
1 parent d50f3aa commit cec6f4e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pip/req/req_install.py
Original file line number Diff line number Diff line change
Expand Up @@ -614,7 +614,7 @@ def confirm_dependencies(self, installed_packages):
[dist for d in dist.requires() if d.key == self.req.name])
if not dep_keys:
return True
print("%s is depended from:" % self.req)
logger.info("%s is depended from:" % self.req)
for dep in dep_keys:
print(dep)
response = ask('Proceed (y/n)? ', ('y', 'n'))
Expand Down

0 comments on commit cec6f4e

Please sign in to comment.