diff options
author | Philipp Hagemeister <phihag@phihag.de> | 2014-11-26 11:50:22 +0100 |
---|---|---|
committer | Philipp Hagemeister <phihag@phihag.de> | 2014-11-26 11:50:22 +0100 |
commit | ab4ee31eb15842a2f100bf618579422d3604f03c (patch) | |
tree | 6a596c05a1fab1f6879e82bda3effd13e1540770 /youtube_dl | |
parent | b061ea6e9f49ef2f80e8dac6413088b1b83cc92d (diff) |
[utils] remove useless u prefix
Diffstat (limited to 'youtube_dl')
-rw-r--r-- | youtube_dl/utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/utils.py b/youtube_dl/utils.py index f9b5f9867..4d3cbac74 100644 --- a/youtube_dl/utils.py +++ b/youtube_dl/utils.py @@ -131,7 +131,7 @@ if sys.version_info >= (2, 7): """ Find the xpath xpath[@key=val] """ assert re.match(r'^[a-zA-Z-]+$', key) assert re.match(r'^[a-zA-Z0-9@\s:._-]*$', val) - expr = xpath + u"[@%s='%s']" % (key, val) + expr = xpath + "[@%s='%s']" % (key, val) return node.find(expr) else: def find_xpath_attr(node, xpath, key, val): |