From 4d89f8218e400ad9903e3e92654179f622a44650 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ram=C3=B3n=20M=2E=20G=C3=B3mez?= Date: Tue, 3 Jul 2018 17:55:25 +0200 Subject: [PATCH] #750: Simple REST route to get the list of running commands. --- src/opengnsys/operations.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/opengnsys/operations.py b/src/opengnsys/operations.py index 2798cb1..4bba806 100644 --- a/src/opengnsys/operations.py +++ b/src/opengnsys/operations.py @@ -49,7 +49,7 @@ else: if os.path.exists('/scripts/oginit'): from .oglive.operations import * # @UnusedWildImport os_type = 'ogLive' - os_version = get_oglive_version() + os_version = get_oglive_version().replace(',', '') else: from .linux.operations import * # @UnusedWildImport os_type = 'Linux'