mirror of
https://github.com/ansible/awx.git
synced 2024-11-01 08:21:15 +03:00
17 lines
365 B
Python
Executable File
17 lines
365 B
Python
Executable File
#!/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)
|