1
0
Fork 0
mirror of https://github.com/ejwa/gitinspector.git synced 2025-03-26 02:01:27 +01:00
This commit is contained in:
Ramesh R 2018-07-25 06:59:57 +00:00 committed by GitHub
commit 9d44de961c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -92,7 +92,7 @@ class BlameOutput(Outputable):
blame_xml += " });"
blame_xml += "</script></div></div>"
print(blame_xml)
print(blame_xml.encode("utf-8"))
def output_json(self):
message_json = "\t\t\t\"message\": \"" + _(BLAME_INFO_TEXT) + "\",\n"

View file

@ -93,7 +93,7 @@ class ChangesOutput(Outputable):
changes_xml += "<p>" + _(NO_COMMITED_FILES_TEXT) + ".</p>"
changes_xml += "</div></div>"
print(changes_xml)
print(changes_xml.encode("utf-8"))
def output_json(self):
authorinfo_list = self.changes.get_authorinfo_list()