From 83e865a37051ceeb0024490dce6849b8fd6a6943 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaime=20Marqui=CC=81nez=20Ferra=CC=81ndiz?= Date: Tue, 9 Dec 2014 23:11:26 +0100 Subject: Fix PEP8 issue E713 --- youtube_dl/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'youtube_dl/utils.py') diff --git a/youtube_dl/utils.py b/youtube_dl/utils.py index 2e70cc791..a95d2c942 100644 --- a/youtube_dl/utils.py +++ b/youtube_dl/utils.py @@ -1024,7 +1024,7 @@ def smuggle_url(url, data): def unsmuggle_url(smug_url, default=None): - if not '#__youtubedl_smuggle' in smug_url: + if '#__youtubedl_smuggle' not in smug_url: return smug_url, default url, _, sdata = smug_url.rpartition('#') jsond = compat_parse_qs(sdata)['__youtubedl_smuggle'][0] -- cgit v1.2.3