summaryrefslogtreecommitdiffstats
path: root/src/linux/ogOperations.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/linux/ogOperations.py')
-rw-r--r--src/linux/ogOperations.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/linux/ogOperations.py b/src/linux/ogOperations.py
index 385fd95..505894b 100644
--- a/src/linux/ogOperations.py
+++ b/src/linux/ogOperations.py
@@ -84,7 +84,10 @@ def software(request, path, ogRest):
def hardware(path, ogRest):
try:
- ogRest.proc = subprocess.Popen([OG_PATH + 'interfaceAdm/InventarioHardware', path], stdout=subprocess.PIPE, shell=True)
+ cmd = [OG_PATH + 'interfaceAdm/InventarioHardware ' + path]
+ ogRest.proc = subprocess.Popen(cmd,
+ stdout=subprocess.PIPE,
+ shell=True)
(output, error) = ogRest.proc.communicate()
except:
raise ValueError('Error: Incorrect command value')