mirror of
https://github.com/ziirish/burp-ui.git
synced 2026-05-15 14:16:08 -06:00
add: missing encoding workaround for bui-agent with python 2.x
This commit is contained in:
parent
44951c6341
commit
d4951fd949
1 changed files with 5 additions and 0 deletions
|
|
@ -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')
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue