mirror of
https://github.com/MillironX/nfdocs-parser.git
synced 2024-11-21 00:36:04 +00:00
Add position location for YAML parsing errors
Signed-off-by: Thomas A. Christensen II <25492070+MillironX@users.noreply.github.com>
This commit is contained in:
parent
54dc67b0d3
commit
d86d85a182
1 changed files with 1 additions and 1 deletions
|
@ -165,7 +165,7 @@ class NFDocs(Directive):
|
|||
docstrings[proc_type][proc_name] = yaml.safe_load(doc_yaml)
|
||||
except:
|
||||
logger = logging.getLogger(__name__)
|
||||
logger.warning(f"Could not parse YAML for {proc_name}")
|
||||
logger.warning(f"Could not parse YAML for {proc_name} ({f}:{pos})")
|
||||
|
||||
# Try to convert each definition to a node
|
||||
for block_type, block_docs in docstrings.items():
|
||||
|
|
Loading…
Reference in a new issue