summaryrefslogtreecommitdiff
path: root/grc/python/Generator.py
diff options
context:
space:
mode:
authorJohnathan Corgan <johnathan@corganlabs.com>2015-10-17 10:19:36 -0700
committerJohnathan Corgan <johnathan@corganlabs.com>2015-10-17 10:19:36 -0700
commit1ae4db2cd676a027cc146015851ab57810ba84c0 (patch)
tree7b8091aa379e5f87b1ce88abe7524bf020b585d1 /grc/python/Generator.py
parentde3f86e60c4c9b64b7ba887e315aef2c53143213 (diff)
parent83da78945f7e68da2630f7006ce319d758fdc29d (diff)
Merge branch 'master' into next
Diffstat (limited to 'grc/python/Generator.py')
-rw-r--r--grc/python/Generator.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/grc/python/Generator.py b/grc/python/Generator.py
index d48be2f00e..d60befe3fa 100644
--- a/grc/python/Generator.py
+++ b/grc/python/Generator.py
@@ -22,6 +22,7 @@ import sys
import subprocess
import tempfile
import shlex
+import codecs
from distutils.spawn import find_executable
from Cheetah.Template import Template
@@ -107,7 +108,7 @@ class TopBlockGenerator(object):
"This is usually undesired. Consider "
"removing the throttle block.")
# generate
- with open(self.get_file_path(), 'w') as fp:
+ with codecs.open(self.get_file_path(), 'w', encoding = 'utf-8') as fp:
fp.write(self._build_python_code_from_template())
try:
os.chmod(self.get_file_path(), self._mode)