Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions make_deb/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import codecs
import datetime
import os
from pkg_resources import resource_string
Expand Down Expand Up @@ -45,7 +46,7 @@ def _context_from_git(self):
["git", "log", "-1", "--oneline"],
cwd=self.rootdir,
stdout=subprocess.PIPE).communicate()
return {"latest_git_commit": stdout[0]}
return {"latest_git_commit": stdout[0].decode('utf-8')}
except OSError:
raise DebianConfigurationException("Please install git")
except Exception as e:
Expand Down Expand Up @@ -96,7 +97,7 @@ def render(self):
resource_string("make_deb", template).decode('utf-8')
).render(self.context)

with open(os.path.join(output_dir, filename), "w") as f:
with codecs.open(os.path.join(output_dir, filename), "w", 'utf-8') as f:
f.write(content)

# Need to to trigger separately because filename must change
Expand Down