Fixes 'IndexError: list index out of range' in wordpress.py:112 (is_readme() method)

pull/5/head
bloorq@gmail.com 2017-06-16 19:37:05 +01:00
parent ea8a6bffbe
commit 0c2350b069
1 changed files with 1 additions and 1 deletions

View File

@ -109,7 +109,7 @@ class Wordpress:
regex = re.compile(regex)
matches = regex.findall(r.text)
if matches[0] != None and matches[0] != "":
if len(matches) > 0 and matches[0] != None and matches[0] != "":
self.version = matches[0]
print critical("The Wordpress '%s' file exposing a version number: %s" % (self.url+'readme.html', matches[0]))