diff options
author | Jakub Wilk <jwilk@jwilk.net> | 2016-01-10 16:17:47 +0100 |
---|---|---|
committer | Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com> | 2016-01-10 17:24:28 +0100 |
commit | dfb1b1468cef4ddc7ecc43776abce03763f8e426 (patch) | |
tree | fbd8d76f3c9a04d999f5b0853b25deacfe715f31 /youtube_dl/utils.py | |
parent | 3c91e41614a0f3bfab8710e861c895b78d93bce8 (diff) |
Fix typos
Closes #8200.
Diffstat (limited to 'youtube_dl/utils.py')
-rw-r--r-- | youtube_dl/utils.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/youtube_dl/utils.py b/youtube_dl/utils.py index da4ec7f20..9c1c0e0bd 100644 --- a/youtube_dl/utils.py +++ b/youtube_dl/utils.py @@ -984,7 +984,7 @@ def date_from_str(date_str): if sign == '-': time = -time unit = match.group('unit') - # A bad aproximation? + # A bad approximation? if unit == 'month': unit = 'day' time *= 30 @@ -1307,7 +1307,7 @@ def parse_filesize(s): if s is None: return None - # The lower-case forms are of course incorrect and inofficial, + # The lower-case forms are of course incorrect and unofficial, # but we support those too _UNIT_TABLE = { 'B': 1, |