Skip to content

Commit 976c512

Browse files
authored
Fix template not found error message (#16)
1 parent 289dab9 commit 976c512

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v0.6.0
1+
v0.6.1

src/dataflow_spec_builder/template_processor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ def _get_template_definition(self, template_name: str, spec_file_format: str) ->
168168
)
169169
template_path = self._resolve_template_path(base_path, spec_file_format)
170170
if not template_path:
171-
error_msg = f"Template not found: {base_path} for format: {self.spec_file_format.upper()}"
171+
error_msg = f"Template not found: {base_path} for format: {spec_file_format.upper()}"
172172
self.logger.error(error_msg)
173173
raise FileNotFoundError(error_msg)
174174

0 commit comments

Comments
 (0)