mirror of
https://github.com/ansible/awx.git
synced 2024-10-31 23:51:09 +03:00
17 lines
365 B
Python
17 lines
365 B
Python
|
#!/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)
|