diff options
| -rw-r--r-- | apt/progress/__init__.py | 6 |
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) |
