Commit 6c9afe17 authored by Antoine Millet's avatar Antoine Millet
Browse files

Added a workaround for a PEX bug

parent 536f8877
Loading
Loading
Loading
Loading
+4 −1
Original line number Original line Diff line number Diff line
@@ -15,9 +15,12 @@
# You should have received a copy of the GNU Lesser General Public License
# You should have received a copy of the GNU Lesser General Public License
# along with CloudControl.  If not, see <http://www.gnu.org/licenses/>.
# along with CloudControl.  If not, see <http://www.gnu.org/licenses/>.


# FUCKING WORKAROUND FOR THE FUCKING PEX (FUCK!)
import sys
if '/usr/lib/python2.7/dist-packages' not in sys.path:
    sys.path.append('/usr/lib/python2.7/dist-packages')


import os
import os
import sys
import atexit
import atexit
from optparse import OptionParser
from optparse import OptionParser
from os.path import isfile, abspath
from os.path import isfile, abspath