Modify ↓
#9096 closed defect (worksforme)
Create ticket using XML-RPC, returns "unsupported operand type(s) for +=: 'NoneType' and 'unicode'' while executing 'ticket.create()"
Reported by: | Owned by: | osimons | |
---|---|---|---|
Priority: | normal | Component: | XmlRpcPlugin |
Severity: | normal | Keywords: | |
Cc: | Trac Release: | 0.12 |
Description
Hello all,
I use the XMLRPC plugin to create a ticket with the XML code below
<?xml version="1.0"?> <methodCall> <methodName>ticket.create</methodName> <params> <param><string>test summary</string></param> <param><string>test desc</string></param> </params> </methodCall>
it returns false but the ticket created.
<?xml version='1.0'?> <methodResponse> <fault> <value><struct> <member> <name>faultCode</name> <value><int>1</int></value> </member> <member> <name>faultString</name> <value><string>'unsupported operand type(s) for +=: 'NoneType' and 'unicode'' while executing 'ticket.create()'</string></value> </member> </struct></value> </fault> </methodResponse>
In the attachment is the trackback log Would anyone please to check what the problem is? My trac version is 0.12.2 And the XMLRPC plugin version is 1.1.2
Thanks all a lot
Attachments (1)
Change History (3)
Changed 13 years ago by
comment:1 Changed 13 years ago by
Resolution: | → worksforme |
---|---|
Status: | new → closed |
I've added a test case with your input, and in the functional (plain) Trac environment it works as expected.
I'm guessing this is related to some ticket-manipulating plugins you may have installed, or some other plugins or changes you've made.
Note: See
TracTickets for help on using
tickets.
trackback