diff options
author | Matt Rendina <mrendina@stsci.edu> | 2017-04-18 13:38:07 -0400 |
---|---|---|
committer | Matt Rendina <mrendina@stsci.edu> | 2017-04-18 13:38:07 -0400 |
commit | 3dbcd4d3cf22ae3ec4c23426c8c810a71f3ca962 (patch) | |
tree | 970782d412b38251583b50200c814e5cb7dd17fa | |
parent | e044cf08401900f16bf502c806da5b60a3b19aaa (diff) | |
download | build_control-3dbcd4d3cf22ae3ec4c23426c8c810a71f3ca962.tar.gz |
Typo fix
-rw-r--r-- | jenkins/dispatch.groovy | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/jenkins/dispatch.groovy b/jenkins/dispatch.groovy index df7f780..3c2080a 100644 --- a/jenkins/dispatch.groovy +++ b/jenkins/dispatch.groovy @@ -60,7 +60,7 @@ node(LABEL) { println("PY_VERSION = ${PY_VERSION}") assert PY_VERSION != null assert PY_VERSION != "py_version-DEFAULTVALUE" - this.py_maj_version = "${PY_VERSION.split.(".")[0]}" + this.py_maj_version = "${PY_VERSION.split(".")[0]}" // Inherited from env() assignment performed in the generator // DSL script. |