From 57d10df3d6fffe34f25e254704faf23b9f310d77 Mon Sep 17 00:00:00 2001 From: Henrik Hank Date: Tue, 15 May 2018 05:02:38 +0200 Subject: [PATCH] Superfluous space. --- youtube_dl/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/youtube_dl/utils.py b/youtube_dl/utils.py index 84cc54042..049ad7704 100644 --- a/youtube_dl/utils.py +++ b/youtube_dl/utils.py @@ -3967,7 +3967,7 @@ def iri_to_uri(iri): compat_urllib_parse_quote_plus(iri_parts.path, safe=r"!$%&'()*+,/:;=@|~"), - # Unsure about the `safe` argument , since this is a legacy way of handling parameters. + # Unsure about the `safe` argument, since this is a legacy way of handling parameters. compat_urllib_parse_quote_plus(iri_parts.params, safe=r"!$%&'()*+,/:;=@|~"), # Not totally sure about the `safe` argument, since the source does not explicitly mention the query URI component.