We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5b2f09d commit c8e9e70Copy full SHA for c8e9e70
github2/issues.py
@@ -14,7 +14,7 @@ class Issue(BaseData):
14
updated_at = DateAttribute("The date when this issue was last updated.")
15
16
def __repr__(self):
17
- return "<Issue: %s>" % self.title
+ return "<Issue: %s>" % self.title.encode('utf-8')
18
19
20
class Issues(GithubCommand):
0 commit comments