]> git.bitcoin.ninja Git - youtube-dl/blobdiff - youtube_dl/utils.py
Merge pull request #7514 from ping/patch-7301
[youtube-dl] / youtube_dl / utils.py
index b7013a6aaef400633d45ac33c4a7fcb949802be7..d00b14b86d8ea8d43aef6bd7cf5a575cda5f94af 100644 (file)
@@ -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):