aboutsummaryrefslogtreecommitdiffstats
path: root/servo/models/common.py
diff options
context:
space:
mode:
Diffstat (limited to 'servo/models/common.py')
-rw-r--r--servo/models/common.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/servo/models/common.py b/servo/models/common.py
index 1d3e17b..b1b756f 100644
--- a/servo/models/common.py
+++ b/servo/models/common.py
@@ -49,7 +49,7 @@ class CsvTable(object):
"""Pad row to self.colwdith"""
r = []
for c in row:
- r.append(unicode(c).ljust(self.colwidth))
+ r.append(str(c).ljust(self.colwidth))
return r
@@ -70,7 +70,7 @@ class CsvTable(object):
return self.table
def __str__(self):
- return unicode(self).encode('utf-8')
+ return str(self).encode('utf-8')