Skip to content

Commit 575e809

Browse files
authored
Typos fix
1 parent be1cd38 commit 575e809

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

release.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ def run_command(args, debug=False):
3131
err, out = None, None
3232
if debug:
3333
print "cwd[{}]".format(os.getcwd())
34-
print "Executing: "+repr(args)
35-
p = Popen(args,stdout=PIPE,stderr=PIPE)
34+
print "Executing: " + repr(args)
35+
p = Popen(args, stdout=PIPE, stderr=PIPE)
3636
if p.wait() == 0:
3737
out = p.stdout.read()
3838
out = out.strip()
@@ -52,7 +52,7 @@ def update_pom_file(fpath, seldon_core_version, debug=False):
5252
print "processing [{}]".format(fpath)
5353
comp_dir_path = os.path.dirname(fpath)
5454
os.chdir(comp_dir_path)
55-
args = ["mvn","versions:set","-DnewVersion={seldon_core_version}".format(**locals())]
55+
args = ["mvn", "versions:set", "-DnewVersion={seldon_core_version}".format(**locals())]
5656
err, out = run_command(args, debug)
5757
##pp(out)
5858
##pp(err)
@@ -117,7 +117,7 @@ def set_version(seldon_core_version, pom_files, chart_yaml_files, values_yaml_fi
117117

118118
def main(argv):
119119
POM_FILES = ['engine/pom.xml', 'api-frontend/pom.xml', 'cluster-manager/pom.xml']
120-
CHART_YAML_FILES = ['helm-charts/seldon-core/Chart.yaml','helm-charts/seldon-core-crd/Chart.yaml']
120+
CHART_YAML_FILES = ['helm-charts/seldon-core/Chart.yaml', 'helm-charts/seldon-core-crd/Chart.yaml']
121121
VALUES_YAML_FILE = 'helm-charts/seldon-core/values.yaml'
122122

123123
opts = getOpts(argv[1:])

0 commit comments

Comments
 (0)