diff --git a/mitmproxy b/mitmproxy index b1e22fac0..e4d72ed85 100755 --- a/mitmproxy +++ b/mitmproxy @@ -15,7 +15,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -import sys, argparse +import sys, argparse, os from libmproxy import proxy, console, cmdline, version from libmproxy.console import palettes @@ -62,6 +62,12 @@ if __name__ == '__main__': opts.debug = options.debug opts.palette = options.palette + if "utf" not in os.environ.get("LANG", "").lower(): + 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()