ewsterrenburg / python-otrs

Pythonic interface to OTRS SOAP API
GNU General Public License v3.0
47 stars 27 forks source link

allow requests with lists of strings as arguments (e.g search filter) #30

Closed powo closed 7 years ago

powo commented 7 years ago

If the kwargs of a request have values that are e.g list of strings, it resulted in an error because 'str' object has no attribute 'to_xml' e.g:

    SortBy=['State', 'Age'],
    OrderBy=['Up', 'Down'],

added support for this kind of arguments

ewsterrenburg commented 7 years ago

Thanks @powo