6544d16770
This reverts commit 5a2693bd9fd1aa0378f4335b76c0d78ca7534f7e.
9 lines
258 B
Python
Executable File
9 lines
258 B
Python
Executable File
#!/home/untriex/Documents/Info_edupage/.venv/bin/python
|
|
# -*- coding: utf-8 -*-
|
|
import re
|
|
import sys
|
|
from pip._internal.cli.main import main
|
|
if __name__ == '__main__':
|
|
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
|
|
sys.exit(main())
|