diff options
Diffstat (limited to 'platform_utils.py')
-rw-r--r-- | platform_utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform_utils.py b/platform_utils.py index 490ba208..f1da75eb 100644 --- a/platform_utils.py +++ b/platform_utils.py | |||
@@ -179,7 +179,7 @@ class _FileDescriptorStreamsThreads(FileDescriptorStreams): | |||
179 | for line in iter(self.fd.readline, b''): | 179 | for line in iter(self.fd.readline, b''): |
180 | self.queue.put(_FileDescriptorStreamsThreads.QueueItem(self, line)) | 180 | self.queue.put(_FileDescriptorStreamsThreads.QueueItem(self, line)) |
181 | self.fd.close() | 181 | self.fd.close() |
182 | self.queue.put(_FileDescriptorStreamsThreads.QueueItem(self, None)) | 182 | self.queue.put(_FileDescriptorStreamsThreads.QueueItem(self, b'')) |
183 | 183 | ||
184 | 184 | ||
185 | def symlink(source, link_name): | 185 | def symlink(source, link_name): |