|
|
@ -576,11 +576,9 @@ class ContentTooShortError(Exception):
|
|
|
|
download is too small for what the server announced first, indicating
|
|
|
|
download is too small for what the server announced first, indicating
|
|
|
|
the connection was probably interrupted.
|
|
|
|
the connection was probably interrupted.
|
|
|
|
"""
|
|
|
|
"""
|
|
|
|
# Both in bytes
|
|
|
|
|
|
|
|
downloaded = None
|
|
|
|
|
|
|
|
expected = None
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def __init__(self, downloaded, expected):
|
|
|
|
def __init__(self, downloaded, expected):
|
|
|
|
|
|
|
|
# Both in bytes
|
|
|
|
self.downloaded = downloaded
|
|
|
|
self.downloaded = downloaded
|
|
|
|
self.expected = expected
|
|
|
|
self.expected = expected
|
|
|
|
|
|
|
|
|
|
|
|