Skip to content

Commit

Permalink
Fixed #22335 -- Fixed popen_wrapper error on non-English Windows syst…
Browse files Browse the repository at this point in the history
…ems.
  • Loading branch information
zsiciarz committed Mar 25, 2014
1 parent ff874f3 commit 3cdb0ba
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion django/core/management/utils.py
Expand Up @@ -20,8 +20,10 @@ def popen_wrapper(args, os_err_exc_type=CommandError):
p = Popen(args, shell=False, stdout=PIPE, stderr=PIPE,
close_fds=os.name != 'nt', universal_newlines=True)
except OSError as e:
strerror = force_text(e.strerror, DEFAULT_LOCALE_ENCODING,
strings_only=True)
six.reraise(os_err_exc_type, os_err_exc_type('Error executing %s: %s' %
(args[0], e.strerror)), sys.exc_info()[2])
(args[0], strerror)), sys.exc_info()[2])
output, errors = p.communicate()
return (
output,
Expand Down

0 comments on commit 3cdb0ba

Please sign in to comment.