Prin an error when mitmproxy runs in a non-UTF environment.

This commit is contained in:
Aldo Cortesi 2013-05-13 21:41:16 +12:00
parent 11cc48ca25
commit d86b7c7f77

View File

@ -15,7 +15,7 @@
# You should have received a copy of the GNU General Public License # You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>. # along with this program. If not, see <http://www.gnu.org/licenses/>.
import sys, argparse import sys, argparse, os
from libmproxy import proxy, console, cmdline, version from libmproxy import proxy, console, cmdline, version
from libmproxy.console import palettes from libmproxy.console import palettes
@ -62,6 +62,12 @@ if __name__ == '__main__':
opts.debug = options.debug opts.debug = options.debug
opts.palette = options.palette 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) m = console.ConsoleMaster(server, opts)
try: try:
m.run() m.run()