a = 10
print a
UnicodeEncodeError: 'ascii' codec can't encode characters in position 35-39: ordinal not in range(128).
proc_env[k] = os.path.expandvars(v.decode(sys.getfilesystemencoding())).encode(sys.getfilesystemencoding())
class ExecCommand(sublime_plugin.WindowCommand, ProcessListener):
def run(self, cmd = [], file_regex = "", line_regex = "", working_dir = "",
encoding = "utf-8", env = {}, quiet = False, kill = False,
# Catches "path" and "shell"
**kwargs):
# Добавьте следующую строку
cmd = [c.encode(sys.getfilesystemencoding()) for c in cmd]
...