We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 39e3c22 commit baae4a7Copy full SHA for baae4a7
dbt2looker/parser.py
@@ -23,7 +23,7 @@ def validate_manifest(raw_manifest: dict):
23
def raise_error_context(error: jsonschema.ValidationError, offset=''):
24
for error in sorted(error.context, key=lambda e: e.schema_path):
25
raise_error_context(error, offset=offset + ' ')
26
- path = '.'.join(list(error.absolute_path))
+ path = '.'.join([str(p) for p in error.absolute_path])
27
logging.error(f'{offset}Error in manifest at {path}: {error.message}')
28
29
0 commit comments