OSidorenkov / zabbix-jira

Python module that allows you to create tasks in Jira by the trigger from Zabbix
MIT License
40 stars 21 forks source link

TypeError #12

Open sthenley opened 5 years ago

sthenley commented 5 years ago

From command line execution, I get this error (warning): (...) _raise TypeError("quote_frombytes() expected bytes")

Solution: # title = requests.utils.quote(title) title = requests.utils.quote(str(title))

braieralves commented 3 years ago

@sthenley Same error here.

Do you solved this issue?