Merge branch 'bugfix-agent-encoding' into 'master'

Bugfix agent encoding

Closes #247

See merge request ziirish/burp-ui!85
This commit is contained in:
Ziirish 2018-01-22 20:42:55 +01:00
commit d8042c1f55
21 changed files with 399 additions and 273 deletions

View file

@ -9,5 +9,10 @@ jQuery/Bootstrap
.. moduleauthor:: Ziirish <hi+burpui@ziirish.me>
"""
import sys
__title__ = 'burp-ui-agent'
if sys.version_info < (3, 0): # pragma: no cover
reload(sys)
sys.setdefaultencoding('utf-8')