fix typo in environ

This commit is contained in:
adam j hartz 2016-03-11 11:43:56 -05:00
parent 58e6675397
commit c1d2423659

View file

@ -88,7 +88,7 @@ DEFAULT_ENSURERS = {
'XONSH_HISTORY_SIZE': (is_history_tuple, to_history_tuple, history_tuple_to_str),
'XONSH_LOGIN': (is_bool, to_bool, bool_to_str),
'XONSH_STORE_STDOUT': (is_bool, to_bool, bool_to_str),
'XONSH_STORE_STIN': (is_bool, to_bool, bool_to_str),
'XONSH_STORE_STDIN': (is_bool, to_bool, bool_to_str),
'VI_MODE': (is_bool, to_bool, bool_to_str),
'VIRTUAL_ENV': (is_string, ensure_string, ensure_string),
'WIN_UNICODE_CONSOLE': (always_false, setup_win_unicode_console, bool_to_str),