summaryrefslogtreecommitdiff
path: root/apt/progress/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'apt/progress/__init__.py')
-rw-r--r--apt/progress/__init__.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/apt/progress/__init__.py b/apt/progress/__init__.py
index 337bd161..3a6b3f91 100644
--- a/apt/progress/__init__.py
+++ b/apt/progress/__init__.py
@@ -284,7 +284,11 @@ class InstallProgress(DumbInstallProgress):
return os.fork()
def waitChild(self):
- """Wait for child progress to exit."""
+ """Wait for child progress to exit.
+
+ The return values is the full status returned from os.waitpid()
+ (not only the return code).
+ """
while True:
try:
select.select([self.statusfd], [], [], self.selectTimeout)