aboutsummaryrefslogtreecommitdiffstats
path: root/yt_dlp/utils.py
diff options
context:
space:
mode:
authorpukkandan <pukkandan.ytdlp@gmail.com>2022-03-04 19:38:55 +0530
committerpukkandan <pukkandan.ytdlp@gmail.com>2022-03-08 22:38:06 +0530
commit08d30158ec8e7e08c1d83dcfde6dba18c95b2640 (patch)
treeccfe053ce94c1005b3d8b3a8a0a9b9af4180424e /yt_dlp/utils.py
parentc89bec262c7a8efa078c61b2ec59afdd4051e4bf (diff)
downloadhypervideo-pre-08d30158ec8e7e08c1d83dcfde6dba18c95b2640.tar.lz
hypervideo-pre-08d30158ec8e7e08c1d83dcfde6dba18c95b2640.tar.xz
hypervideo-pre-08d30158ec8e7e08c1d83dcfde6dba18c95b2640.zip
[cleanup, docs] Misc cleanup
Closes #2828, closes #2734, closes #2802, closes #2937
Diffstat (limited to 'yt_dlp/utils.py')
-rw-r--r--yt_dlp/utils.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/yt_dlp/utils.py b/yt_dlp/utils.py
index f6e41f837..d2a9303c7 100644
--- a/yt_dlp/utils.py
+++ b/yt_dlp/utils.py
@@ -1030,7 +1030,7 @@ def make_HTTPS_handler(params, **kwargs):
def bug_reports_message(before=';'):
msg = ('please report this issue on https://github.com/yt-dlp/yt-dlp , '
'filling out the "Broken site" issue template properly. '
- 'Confirm you are on the latest version using -U')
+ 'Confirm you are on the latest version using yt-dlp -U')
before = before.rstrip()
if not before or before.endswith(('.', '!', '?')):
@@ -5481,5 +5481,5 @@ has_websockets = bool(compat_websockets)
def merge_headers(*dicts):
- """Merge dicts of network headers case insensitively, prioritizing the latter ones"""
+ """Merge dicts of http headers case insensitively, prioritizing the latter ones"""
return {k.capitalize(): v for k, v in itertools.chain.from_iterable(map(dict.items, dicts))}