diff options
Diffstat (limited to 'youtube_dl/update.py')
| -rw-r--r-- | youtube_dl/update.py | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/youtube_dl/update.py b/youtube_dl/update.py index 4c07a558e..2d2703368 100644 --- a/youtube_dl/update.py +++ b/youtube_dl/update.py @@ -79,7 +79,7 @@ def update_self(to_screen, verbose):              to_screen(compat_str(traceback.format_exc()))          to_screen('ERROR: can\'t obtain versions info. Please try again later.')          return -    if not 'signature' in versions_info: +    if 'signature' not in versions_info:          to_screen('ERROR: the versions file is not signed or corrupted. Aborting.')          return      signature = versions_info['signature'] | 
