z4r / python-rtkit

Python Api for Request Tracker's REST interface
http://z4r.github.com/python-rtkit/
Other
68 stars 44 forks source link

Provide a list for a custom field #42

Open 2xyo opened 9 years ago

2xyo commented 9 years ago

Hi,

I have list of IP as custom field. The adding of one IP works fine but adding a list of IP fails. I have tried with the following syntax :

"CF.{IP src}":  "1.1.1.1\n1.1.1.2"
"CF.{IP src}":  "1.1.1.1, 1.1.1.2"
"CF.{IP src}":  ["1.1.1.1","1.1.1.2"]
"CustomField-8":  "1.1.1.1\n1.1.1.2"
"CustomField-8":  ["1.1.1.1","1.1.1.2"]

Any idea ?

Update : I think it's to the bug #99520.