From 89a281c2caa9068448be380c9c909ba6dfd19389 Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Thu, 7 Nov 2019 09:13:39 +0100 Subject: [PATCH] fix author overwrite and template --- ansibledoctor/DocumentationParser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ansibledoctor/DocumentationParser.py b/ansibledoctor/DocumentationParser.py index 2165832..f2cb685 100644 --- a/ansibledoctor/DocumentationParser.py +++ b/ansibledoctor/DocumentationParser.py @@ -59,7 +59,7 @@ class Parser: except (ruamel.yaml.composer.ComposerError, ruamel.yaml.scanner.ScannerError) as e: message = "{} {}".format(e.context, e.problem) self.log.sysexit_with_message("Unable to read yaml file {}\n{}".format(rfile, message)) - + def _parse_task_tags(self): for rfile in self._files_registry.get_files(): if any(fnmatch.fnmatch(rfile, "*/tasks/*." + ext) for ext in YAML_EXTENSIONS):