summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--pym/portage/process.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pym/portage/process.py b/pym/portage/process.py
index 6a8a59ff7..3bc6bd1a8 100644
--- a/pym/portage/process.py
+++ b/pym/portage/process.py
@@ -21,8 +21,8 @@ except ImportError:
if os.path.isdir("/proc/%i/fd" % os.getpid()):
def get_open_fds():
- return [int(fd) for fd in os.listdir("/proc/%i/fd" % os.getpid()) \
- if fd.isdigit()]
+ return (int(fd) for fd in os.listdir("/proc/%i/fd" % os.getpid()) \
+ if fd.isdigit())
else:
def get_open_fds():
return xrange(max_fd_limit)