projects
/
youtube-dl
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4c6bd5b
)
Remove redundant (and wrong) class parameters
author
Raphael Michel
<mail@raphaelmichel.de>
Sun, 26 Jul 2015 14:37:51 +0000
(16:37 +0200)
committer
Raphael Michel
<mail@raphaelmichel.de>
Sun, 26 Jul 2015 14:37:51 +0000
(16:37 +0200)
youtube_dl/utils.py
patch
|
blob
|
history
diff --git
a/youtube_dl/utils.py
b/youtube_dl/utils.py
index ae813099dded05c15ed57d27e51be7704e778520..88f9f90707fbd04966638125e94b264af95fedcb 100644
(file)
--- a/
youtube_dl/utils.py
+++ b/
youtube_dl/utils.py
@@
-576,11
+576,9
@@
class ContentTooShortError(Exception):
download is too small for what the server announced first, indicating
the connection was probably interrupted.
"""
- # Both in bytes
- downloaded = None
- expected = None
def __init__(self, downloaded, expected):
+ # Both in bytes
self.downloaded = downloaded
self.expected = expected