Skip to content

Commit

Permalink
[easy] fix missing space in error message for util function (#7761)
Browse files Browse the repository at this point in the history
  • Loading branch information
gibsondan committed May 6, 2022
1 parent db8f725 commit f305b65
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python_modules/dagster/dagster/core/definitions/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ def config_from_files(config_files: List[str]) -> Dict[str, Any]:
globbed_files = glob(file_glob)
if not globbed_files:
raise DagsterInvariantViolationError(
'File or glob pattern "{file_glob}" for "config_files"'
'File or glob pattern "{file_glob}" for "config_files" '
"produced no results.".format(file_glob=file_glob)
)

Expand Down

0 comments on commit f305b65

Please sign in to comment.