summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
authorMagnus Feuer <mfeuer@jaguarlandrover.com>2015-02-12 14:43:31 -0800
committerMagnus Feuer <mfeuer@jaguarlandrover.com>2015-02-12 14:43:31 -0800
commit1b37a7875403f644193db325c4de5bb2a6e8ec6e (patch)
tree97851badb3cb0ce576cc34634da186491172aa41 /python
parent09c4d5c7b210857dbb87e551602a8d653a02b4b5 (diff)
downloadrvi_core-1b37a7875403f644193db325c4de5bb2a6e8ec6e.tar.gz
Added comments
Diffstat (limited to 'python')
-rwxr-xr-xpython/rvi_call.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/python/rvi_call.py b/python/rvi_call.py
index 015f590..9c8d1c2 100755
--- a/python/rvi_call.py
+++ b/python/rvi_call.py
@@ -40,6 +40,8 @@ rvi_node = sys.argv[1]
service = sys.argv[2]
args = []
i=3
+
+# Construct a dictionary from the provided paths.
while i < len(sys.argv):
print sys.argv[i]
[k, v] = sys.argv[i].split('=')
@@ -59,6 +61,9 @@ print "RVI Node: ", rvi_node
print "Service: ", service
print "args: ", args
+#
+# Send the messge.
+#
rvi.message(service, args)