mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-23 08:11:00 +00:00
parent
7ef68b5a13
commit
9f6657727b
@ -62,12 +62,14 @@ if __name__ == '__main__':
|
||||
opts.debug = options.debug
|
||||
opts.palette = options.palette
|
||||
|
||||
if "utf" not in os.environ.get("LANG", "").lower():
|
||||
spec = ""
|
||||
for i in ["LANG", "LC_CTYPE", "LC_ALL"]:
|
||||
spec += os.environ.get(i, "").lower()
|
||||
if "utf" not in spec:
|
||||
print >> sys.stderr, "Error: mitmproxy requires a UTF console environment."
|
||||
print >> sys.stderr, "Set your LANG enviroment variable to something like en_US.UTF-8"
|
||||
sys.exit(1)
|
||||
|
||||
|
||||
m = console.ConsoleMaster(server, opts)
|
||||
try:
|
||||
m.run()
|
||||
|
Loading…
Reference in New Issue
Block a user