From 50fd45fed97262344c1a3f1377d4ef3f3f3d071b Mon Sep 17 00:00:00 2001 From: Pierre Tholoniat <32133147+tholop@users.noreply.github.com> Date: Mon, 29 Jun 2020 23:49:58 -0400 Subject: [PATCH] Fix typo in error message (#3369) "The package_file '+ package_file + ' should ends with..." replaced by "The package_file '+ package_file + ' should end with..." --- sdk/python/kfp/_client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk/python/kfp/_client.py b/sdk/python/kfp/_client.py index 22e5bc07cb3..d7e6ac72677 100644 --- a/sdk/python/kfp/_client.py +++ b/sdk/python/kfp/_client.py @@ -381,7 +381,7 @@ def _choose_pipeline_yaml_file(file_list) -> str: with open(package_file, 'r') as f: return yaml.safe_load(f) else: - raise ValueError('The package_file '+ package_file + ' should ends with one of the following formats: [.tar.gz, .tgz, .zip, .yaml, .yml]') + raise ValueError('The package_file '+ package_file + ' should end with one of the following formats: [.tar.gz, .tgz, .zip, .yaml, .yml]') def list_pipelines(self, page_token='', page_size=10, sort_by=''): """List pipelines.