Skip to content

Commit c8e9e70

Browse files
committed
wip - repr must be Ascii
1 parent 5b2f09d commit c8e9e70

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

github2/issues.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ class Issue(BaseData):
1414
updated_at = DateAttribute("The date when this issue was last updated.")
1515

1616
def __repr__(self):
17-
return "<Issue: %s>" % self.title
17+
return "<Issue: %s>" % self.title.encode('utf-8')
1818

1919

2020
class Issues(GithubCommand):

0 commit comments

Comments
 (0)