i2pdctl: s/arguments/parameters

This commit is contained in:
l-n-s 2018-03-05 13:39:45 -05:00
parent cff429a18b
commit 034837e341

View file

@ -92,12 +92,12 @@ class I2pdctl(object):
def execute(self, args): def execute(self, args):
"""Execute raw method""" """Execute raw method"""
try: try:
arguments = json.loads(args.arguments) parameters = json.loads(args.parameters)
except json.decoder.JSONDecodeError: except json.decoder.JSONDecodeError:
print("Error: arguments should be a valid JSON object") print("Error: parameters should be a valid JSON object")
return return
resp = self.ctl.request(args.method, arguments) resp = self.ctl.request(args.method, parameters)
if args.json_output: if args.json_output:
print(resp.text) print(resp.text)