Fix method signature of platform_utils.FileDescriptorStreams._create_stream()

Change-Id: Ib80e4ec5e540d97488e7564703ddbcb74350fdfd
Reviewed-on: https://gerrit-review.googlesource.com/c/git-repo/+/251836
Reviewed-by: Mike Frysinger <vapier@google.com>
Tested-by: Rostislav Krasny <rostigm@gmail.com>
This commit is contained in:
Rostislav Krasny 2020-01-25 14:32:37 +02:00
parent 9da67feecf
commit ec0ba2777f

View File

@ -80,7 +80,7 @@ class FileDescriptorStreams(object):
""" """
raise NotImplementedError raise NotImplementedError
def _create_stream(fd, dest, std_name): def _create_stream(self, fd, dest, std_name):
""" Creates a new stream wrapping an existing file descriptor. """ Creates a new stream wrapping an existing file descriptor.
""" """
raise NotImplementedError raise NotImplementedError