Skip to content

Commit

Permalink
Update src/spring/azext_spring/_app_validator.py
Browse files Browse the repository at this point in the history
Co-authored-by: Yuwei Zhou <[email protected]>
  • Loading branch information
Netyyyy and yuwzho committed Jul 2, 2024
1 parent d1651ae commit da691cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/spring/azext_spring/_app_validator.py
Original file line number Diff line number Diff line change
Expand Up @@ -171,4 +171,4 @@ def validate_path_exist(source_path, artifact_path):
if source_path and not os.path.exists(source_path):
raise InvalidArgumentValueError('source path {} does not exist.'.format(source_path))
if artifact_path and not os.path.exists(artifact_path):
raise InvalidArgumentValueError('artifact path does not exist.')
raise InvalidArgumentValueError('artifact path {} does not exist.'.format(artifact_path))

0 comments on commit da691cd

Please sign in to comment.