summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xbin/env-update4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/env-update b/bin/env-update
index b919a1267..69daaca87 100755
--- a/bin/env-update
+++ b/bin/env-update
@@ -3,7 +3,7 @@
# Distributed under the terms of the GNU General Public License v2
# $Id$
-import os,sys
+import os, sys, errno
def usage(status):
print "Usage: env-update [--no-ldconfig]"
@@ -31,7 +31,7 @@ except ImportError:
try:
portage.env_update(makelinks)
except IOError, e:
- if e.errno == 13:
+ if e.errno == errno.EACCES:
print "env-update: Need superuser access"
sys.exit(1)
else: