We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6048da4 commit 53884a0Copy full SHA for 53884a0
roundup/cgi/client.py
@@ -597,7 +597,7 @@ def handle_xmlrpc(self):
597
# Pull the raw XML out of the form. The "value" attribute
598
# will be the raw content of the POST request.
599
assert self.form.file
600
- input = self.form.value
+ input_data = self.form.value
601
# So that the rest of Roundup can query the form in the
602
# usual way, we create an empty list of fields.
603
self.form.list = []
@@ -660,7 +660,7 @@ def handle_xmlrpc(self):
660
self.instance.actions,
661
self.translator,
662
allow_none=True)
663
- output = handler.dispatch(input)
+ output = handler.dispatch(input_data)
664
665
self.setHeader("Content-Type", "text/xml")
666
self.setHeader("Content-Length", str(len(output)))
0 commit comments