~ibmcharmers/charms/xenial/ibm-cinder-storwize-svc/trunk

« back to all changes in this revision

Viewing changes to .tox/py35/bin/pip3

  • Committer: Ankammarao
  • Date: 2017-03-06 05:11:42 UTC
  • Revision ID: achittet@in.ibm.com-20170306051142-dpg27z4es1k56hfn
Marked tests folder executable

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/root/charms/xenial/ibm-cinder-storwize-svc/.tox/py35/bin/python3.5
 
2
 
 
3
# -*- coding: utf-8 -*-
 
4
import re
 
5
import sys
 
6
 
 
7
from pip import main
 
8
 
 
9
if __name__ == '__main__':
 
10
    sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
 
11
    sys.exit(main())