]> jfr.im git - yt-dlp.git/blobdiff - yt_dlp/utils.py
[cleanup, docs] Misc cleanup
[yt-dlp.git] / yt_dlp / utils.py
index f6e41f8373d68921f97a713940c6edbc053ac8fb..d2a9303c701251b31c722bb0e41859b7f95dc432 100644 (file)
@@ -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 @@ def _cancel_all_tasks(loop):
 
 
 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))}