summaryrefslogtreecommitdiff
path: root/contrib/get-pip.py
blob: 9e48c87e8cce31fa8488e9f269e1534986a5afb5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/env python
import sys


def main():
    sys.exit(
        "You're using an outdated location for the get-pip.py script, please "
        "use the one available from https://bootstrap.pypa.io/get-pip.py"
    )


if __name__ == "__main__":
    main()