mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2025-01-01 18:56:41 +00:00
Make these byte strings explicitly byte strings
This commit is contained in:
parent
84cc7c5b84
commit
b879314194
@ -122,7 +122,7 @@ class FakeTransport(object):
|
||||
disconnecting = False
|
||||
|
||||
class DeepCheckOutput(LineOnlyReceiver, object):
|
||||
delimiter = "\n"
|
||||
delimiter = b"\n"
|
||||
def __init__(self, streamer, options):
|
||||
self.streamer = streamer
|
||||
self.transport = FakeTransport()
|
||||
@ -181,7 +181,7 @@ class DeepCheckOutput(LineOnlyReceiver, object):
|
||||
% (self.num_objects, self.files_healthy, self.files_unhealthy), file=stdout)
|
||||
|
||||
class DeepCheckAndRepairOutput(LineOnlyReceiver, object):
|
||||
delimiter = "\n"
|
||||
delimiter = b"\n"
|
||||
def __init__(self, streamer, options):
|
||||
self.streamer = streamer
|
||||
self.transport = FakeTransport()
|
||||
|
@ -13,7 +13,7 @@ class FakeTransport(object):
|
||||
disconnecting = False
|
||||
|
||||
class ManifestStreamer(LineOnlyReceiver, object):
|
||||
delimiter = "\n"
|
||||
delimiter = b"\n"
|
||||
|
||||
def __init__(self):
|
||||
self.transport = FakeTransport()
|
||||
|
Loading…
Reference in New Issue
Block a user