Skip to content

Commit

Permalink
fix print func
Browse files Browse the repository at this point in the history
  • Loading branch information
aodag committed Feb 12, 2017
1 parent a91c759 commit 32f6645
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 @@ -626,7 +626,7 @@ def confirm_dependencies(self, installed_packages):
return True
logger.info("%s is depended from:" % self.req)
for dep in dep_keys:
print(dep)
logger.info(dep)
response = ask('Proceed (y/n)? ', ('y', 'n'))
return response == 'y'

Expand Down

0 comments on commit 32f6645

Please sign in to comment.