Check for missing GPLv3 license header in module. Fixes #4

This commit is contained in:
Matt Martz 2015-05-19 11:28:32 -05:00 committed by John Barker
parent 4c8c0b035f
commit 8ff644680d

View file

@ -115,6 +115,11 @@ class ModuleValidator(Validator):
if 'sys.exit(' in self.text:
self.errors.append('sys.exit() call found')
def _check_for_gpl3_header(self):
if ('GNU General Public License' not in self.text and
'version 3' not in self.text):
self.errors.append('GPLv3 license header not found')
def _find_json_import(self):
for child in self.ast.body:
if isinstance(child, ast.Import):
@ -235,6 +240,7 @@ class ModuleValidator(Validator):
if not self._just_docs():
self._check_interpreter()
self._check_for_sys_exit()
self._check_for_gpl3_header()
self._find_json_import()
module_utils = self._find_module_utils()
main = self._find_main_call()