Skip to content
This repository has been archived by the owner on Sep 6, 2019. It is now read-only.

Commit

Permalink
Fix issue with bytestrings/regular strings on py3
Browse files Browse the repository at this point in the history
  • Loading branch information
sergei-maertens committed Aug 24, 2016
1 parent daedddf commit 255f864
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion systemjs/__init__.py
Expand Up @@ -7,7 +7,7 @@
import subprocess


VERSION = (1, 4, 0, 'beta', 0)
VERSION = (1, 4, 0, 'beta', 1)


default_app_config = 'systemjs.apps.SystemJSConfig'
Expand Down
2 changes: 1 addition & 1 deletion systemjs/base.py
Expand Up @@ -204,7 +204,7 @@ def trace(self, app):
process = subprocess.Popen(
"trace-deps.js {}".format(app), shell=True,
stdout=subprocess.PIPE, stderr=subprocess.PIPE,
env=self.env
env=self.env, universal_newlines=True
)
out, err = process.communicate()
self._trace_cache[app] = json.loads(out)
Expand Down

0 comments on commit 255f864

Please sign in to comment.