1
1
Fork 0
mirror of https://github.com/pypa/pip synced 2023-12-13 21:30:23 +01:00
pip/pip/__main__.py
Jannis Leidel 1525a63b57 Added a get_prog util to correctly show the name of the program when using python -m pip.
Also show the full path in the missing command error message.
2012-09-01 20:36:31 +02:00

8 lines
116 B
Python

import sys
from .runner import run
if __name__ == '__main__':
exit = run()
if exit:
sys.exit(exit)