summary refs log tree commit diff
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2015-11-16 20:24:09 +0600
committerSergey M․ <dstftw@gmail.com>2015-11-16 20:24:09 +0600
commit7a3f0c00ad138eef396ae8fd1583fe29b4c4c684 (patch)
treea85031a89550f8a8f3be14a1971940728cda48f3
parent7aefc49c4013efb5056b2c1237e22c52cb5d3c49 (diff)
downloadyoutube-dl-7a3f0c00ad138eef396ae8fd1583fe29b4c4c684.tar.gz
youtube-dl-7a3f0c00ad138eef396ae8fd1583fe29b4c4c684.tar.xz
youtube-dl-7a3f0c00ad138eef396ae8fd1583fe29b4c4c684.zip
[utils] Style
-rw-r--r--youtube_dl/utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/utils.py b/youtube_dl/utils.py
index b7013a6aa..d00b14b86 100644
--- a/youtube_dl/utils.py
+++ b/youtube_dl/utils.py
@@ -403,7 +403,7 @@ def _htmlentity_transform(entity):
             pass
 
     # Unknown entity in name, return its literal representation
-    return ('&%s;' % entity)
+    return '&%s;' % entity
 
 
 def unescapeHTML(s):