[ARVADOS] updated: 1.1.0-74-g9957631

Git user git at public.curoverse.com
Tue Oct 17 12:56:25 EDT 2017


Summary of changes:
 sdk/cwl/setup.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

       via  995763189c219b6cd2885d0c4eeac3ea39e16664 (commit)
      from  50153d8bb7a15fc61fb71f10650d40c3f4c5241c (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.


commit 995763189c219b6cd2885d0c4eeac3ea39e16664
Author: Fernando Monserrat <fernando.monserrat at gmail.com>
Date:   Tue Oct 17 13:56:15 2017 -0300

    12389: fix error with string on _version_ for cwl
    Arvados-DCO-1.1-Signed-off-by: Fernando Monserrat <fmonserrat at veritasgenetics.com>

diff --git a/sdk/cwl/setup.py b/sdk/cwl/setup.py
index 7678ab1..14e87b6 100644
--- a/sdk/cwl/setup.py
+++ b/sdk/cwl/setup.py
@@ -24,7 +24,7 @@ try:
     gitinfo = subprocess.check_output(
             ['git', 'describe', '--abbrev=0'])
     with open(versionfile, "w") as f:
-        f.write("__version__ = '%s'\n" % gitinfo)
+        f.write("__version__ = '%s'\n" % gitinfo.strip())
 except Exception as e:
     # When installing from package, it won't be part of a git repository, and
     # check_output() will raise an exception.  But the package should include the

-----------------------------------------------------------------------


hooks/post-receive
-- 




More information about the arvados-commits mailing list