diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-12-01 23:26:42 -0500 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-12-01 23:26:42 -0500 |
commit | 9c6ca7d7ad304f0f961a9027e155b649fcce61b0 (patch) | |
tree | 031747926d6fb304ebd0d0602cbd8e4af80c0086 /tools | |
parent | 7c875b91bdbd0b9657c4703058a41e62623063c6 (diff) |
fix for pull #1882
Diffstat (limited to 'tools')
-rw-r--r-- | tools/shared.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/shared.py b/tools/shared.py index 39dcad64..46ff7f6f 100644 --- a/tools/shared.py +++ b/tools/shared.py @@ -482,7 +482,7 @@ class Configuration: self.EMSCRIPTEN_TEMP_DIR = self.CANONICAL_TEMP_DIR safe_ensure_dirs(self.EMSCRIPTEN_TEMP_DIR) except Exception, e: - logging.debug(e + 'Could not create canonical temp dir. Check definition of TEMP_DIR in ~/.emscripten') + logging.debug(str(e) + 'Could not create canonical temp dir. Check definition of TEMP_DIR in ~/.emscripten') def get_temp_files(self): return tempfiles.TempFiles( |