diff options
author | remitamine <remitamine@gmail.com> | 2016-01-10 17:55:41 +0100 |
---|---|---|
committer | remitamine <remitamine@gmail.com> | 2016-01-10 17:55:41 +0100 |
commit | 36a0e46c39ea4f211dea9944177976e8f8364736 (patch) | |
tree | 039d7a124939305cef2539bee5e26da597a68005 /youtube_dl/YoutubeDL.py | |
parent | dfb1b1468cef4ddc7ecc43776abce03763f8e426 (diff) |
fix typos
Diffstat (limited to 'youtube_dl/YoutubeDL.py')
-rwxr-xr-x | youtube_dl/YoutubeDL.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/youtube_dl/YoutubeDL.py b/youtube_dl/YoutubeDL.py index d50b7cfed..6afc1b730 100755 --- a/youtube_dl/YoutubeDL.py +++ b/youtube_dl/YoutubeDL.py @@ -241,7 +241,7 @@ class YoutubeDL(object): - "detect_or_warn": check whether we can do anything about it, warn otherwise (default) source_address: (Experimental) Client-side IP address to bind to. - call_home: Boolean, true iff we are allowed to contact the + call_home: Boolean, true if we are allowed to contact the youtube-dl servers for debugging. sleep_interval: Number of seconds to sleep before each download. listformats: Print an overview of available video formats and exit. @@ -590,7 +590,7 @@ class YoutubeDL(object): return None def _match_entry(self, info_dict, incomplete): - """ Returns None iff the file should be downloaded """ + """ Returns None if the file should be downloaded """ video_title = info_dict.get('title', info_dict.get('id', 'video')) if 'title' in info_dict: |