diff options
author | OpenGnSys Support Team <soporte-og@soleta.eu> | 2020-03-20 15:10:41 +0100 |
---|---|---|
committer | Alvaro Neira Ayuso <aneira@soleta.eu> | 2020-03-20 15:11:02 +0100 |
commit | 2cd7f5b4fccf6f9d158d3a18b46813357bfc9cb9 (patch) | |
tree | 17d5564987c47c0426927cdfc128fa23b6037bf1 /src/linux | |
parent | 4cd87e987554db0c3105b4717ed07356274ba057 (diff) |
missing update to use ogConfig.OG_PATH in linux/ogOperations.py
Diffstat (limited to 'src/linux')
-rw-r--r-- | src/linux/ogOperations.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/linux/ogOperations.py b/src/linux/ogOperations.py index 1f2d1bb..de11645 100644 --- a/src/linux/ogOperations.py +++ b/src/linux/ogOperations.py @@ -139,7 +139,7 @@ def setup(request, ogRest): except: raise ValueError('Error: Incorrect command value') - cmd_get_conf = OG_PATH + 'interfaceAdm/getConfiguration' + cmd_get_conf = f'{ogConfig.OG_PATH}interfaceAdm/getConfiguration' result = subprocess.check_output([cmd_get_conf], shell=True) return parseGetConf(result.decode('utf-8')) |