We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 03b5231 commit ef61950Copy full SHA for ef61950
1 file changed
bugzilla/bug.py
@@ -9,6 +9,7 @@
9
# option) any later version. See http://www.gnu.org/copyleft/gpl.html for
10
# the full text of the license.
11
12
+from __future__ import unicode_literals
13
import locale
14
from logging import getLogger
15
import sys
@@ -59,7 +60,7 @@ def __str__(self):
59
60
61
def __unicode__(self):
62
'''Return a simple unicode string representation of this bug'''
- return u"#%-6s %-10s - %s - %s" % (self.bug_id, self.bug_status,
63
+ return "#%-6s %-10s - %s - %s" % (self.bug_id, self.bug_status,
64
self.assigned_to, self.summary)
65
66
def __repr__(self):
0 commit comments