Merge pull request #5 from bl4de/bugfixing
Fixes 'IndexError: list index out of range' in wordpress.py:112 (is_r…pull/6/head
commit
e37b05e359
|
@ -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]))
|
||||
|
||||
|
|
Loading…
Reference in New Issue