summaryrefslogtreecommitdiffstats
path: root/pym
diff options
context:
space:
mode:
authorAlec Warner <antarus@gentoo.org>2007-05-08 05:07:06 +0000
committerAlec Warner <antarus@gentoo.org>2007-05-08 05:07:06 +0000
commite17598cceac1fc0e55660b75f3d5c281f7191970 (patch)
treed9132905a66a69db4c5dc0037e7acd613617f7e3 /pym
parentdae0e0da395c5d0a28485e90ffe5f710f4d01e3f (diff)
downloadportage-e17598cceac1fc0e55660b75f3d5c281f7191970.tar.gz
portage-e17598cceac1fc0e55660b75f3d5c281f7191970.tar.bz2
portage-e17598cceac1fc0e55660b75f3d5c281f7191970.zip
Honestly if they are missing sys, that error message probably won't help any more than the other one (zomg broken)
svn path=/main/trunk/; revision=6499
Diffstat (limited to 'pym')
-rw-r--r--pym/portage/__init__.py7
1 files changed, 1 insertions, 6 deletions
diff --git a/pym/portage/__init__.py b/pym/portage/__init__.py
index 4cdfebe6f..f81fb7766 100644
--- a/pym/portage/__init__.py
+++ b/pym/portage/__init__.py
@@ -12,12 +12,7 @@ VERSION="$Rev$"[6:-2] + "-svn"
try:
import sys
-except ImportError:
- print "Failed to import sys! Something is _VERY_ wrong with python."
- raise
-
-try:
- import copy, errno, os, re, shutil, time, types
+ import copy, errno, os, re, shutil, time, types
try:
import cPickle
except ImportError: