X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=osm_lcm%2FROclient.py;h=74e921292c503508b0723c39df58f5eb283fe5e2;hb=8069ce54d91918c53ec3bf9f8fd4eee8b6aacb93;hp=058472f49b16aec20c7caa0183b76995870f23e5;hpb=51d065c2b514f5fccd0d4caa822a68d614bc55fc;p=osm%2FLCM.git diff --git a/osm_lcm/ROclient.py b/osm_lcm/ROclient.py index 058472f..74e9212 100644 --- a/osm_lcm/ROclient.py +++ b/osm_lcm/ROclient.py @@ -617,7 +617,7 @@ class ROClient: for word in str(response_text).split(" "): if "." in word: version_text, _, _ = word.partition("-") - return list(map(int, version_text.split("."))) + return version_text raise ROClientException("Got invalid version text: '{}'".format(response_text), http_code=500) except aiohttp.errors.ClientOSError as e: raise ROClientException(e, http_code=504)