1
0
mirror of https://github.com/ansible/awx.git synced 2024-11-02 01:21:21 +03:00

Remove obsolete script

This commit is contained in:
Graham Mainwaring 2016-11-10 13:38:58 -05:00
parent f0dad06032
commit a9e46e2720

View File

@ -1,16 +0,0 @@
#!/usr/bin/env python
'''
Fix setuptools (in virtualenv) after upgrading to distribute >= 0.7.
'''
from distutils.sysconfig import get_python_lib
import glob
import os
import shutil
for f in glob.glob(os.path.join(get_python_lib(), 'setuptools-0.6*.egg*')):
print 'removing', f
if os.path.isdir(f):
shutil.rmtree(f)
else:
os.remove(f)