From c7523ac47fdd5d9597e69894e35a3ef0e89cc3b6 Mon Sep 17 00:00:00 2001 From: Marian Steinbach Date: Fri, 10 Aug 2018 11:26:02 +0200 Subject: [PATCH] Add CMS detection for josephknowsbest --- spider.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/spider.py b/spider.py index 572cefd..3006ad7 100644 --- a/spider.py +++ b/spider.py @@ -555,6 +555,8 @@ def check_site(entry): # No generator Tag. Use HTML content. if 'Urwahl3000' in c['content']['html']: result['details']['cms'] = "wordpress-urwahl" + elif 'josephknowsbest' in c['content']['html']: + result['details']['cms'] = "wordpress-josephknowsbest" elif 'wordpress' in c['content']['html']: result['details']['cms'] = "wordpress"