pytools: obmcutil: Drop ability to set properties from the commandline
This was prioritised below the built-in value anyway so I suspect it
is an unused feature, especially now that the org.openbmc interfaces
(and the method feature) have gone away.
Change-Id: Icd5ab91b5fc08b0f6cc461390f4ac39f7e9e41cd
Signed-off-by: Andrew Jeffery <andrew@aj.id.au>
diff --git a/pytools/obmcutil b/pytools/obmcutil
index ae062b4..33a7e20 100644
--- a/pytools/obmcutil
+++ b/pytools/obmcutil
@@ -112,8 +112,6 @@
val = None
if objinfo.has_key('value'):
val = objinfo['value']
- elif len(sys.argv) > 0:
- val = eval(sys.argv.pop(0))
if val is not None:
dbus_iface.Set(iface, prop, val)
else: