summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
Diffstat (limited to 'python')
-rwxr-xr-xpython/rvi_call.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/python/rvi_call.py b/python/rvi_call.py
index 18bce73..746b4ee 100755
--- a/python/rvi_call.py
+++ b/python/rvi_call.py
@@ -49,11 +49,11 @@ if len(args) < 1:
# Construct a dictionary from the provided paths.
i = 0
service = args[0]
-rvi_args = []
+rvi_args = {}
for i in args[1:]:
print i
[k, v] = i.split('=')
- rvi_args = rvi_args + [{ k: v}]
+ rvi_args[k] = v