diff -r 0e5421d679e7 -r ea526b78ee6c Helpviewer/GreaseMonkey/GreaseMonkeyScript.py --- a/Helpviewer/GreaseMonkey/GreaseMonkeyScript.py Tue Mar 07 18:46:09 2017 +0100 +++ b/Helpviewer/GreaseMonkey/GreaseMonkeyScript.py Tue Mar 07 18:53:18 2017 +0100 @@ -134,10 +134,10 @@ @return list of included URLs (list of strings) """ - list = [] + urlList = [] for matcher in self.__include: - list.append(matcher.pattern()) - return list + urlList.append(matcher.pattern()) + return urlList def exclude(self): """ @@ -145,10 +145,10 @@ @return list of excluded URLs (list of strings) """ - list = [] + urlList = [] for matcher in self.__exclude: - list.append(matcher.pattern()) - return list + urlList.append(matcher.pattern()) + return urlList def script(self): """