From e377c177e7076a74ce3da910c20a77db6028c2c9 Mon Sep 17 00:00:00 2001 From: Michel Roux Date: Fri, 20 Mar 2020 14:12:14 +0100 Subject: [PATCH] Test with bytes --- get404.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/get404.py b/get404.py index ae1f117..3b75669 100644 --- a/get404.py +++ b/get404.py @@ -11,5 +11,5 @@ for link in links: if html['http_code'] is not 200: print('(%d) %s %s : %s' % (html['http_code'], link.title.name, link.season, link.link)) - elif 'darkgray' in html['output']: + elif b'darkgray' in html['output']: print('(darkgray) %s %s : %s' % (link.title.name, link.season, link.link))