aboutsummaryrefslogtreecommitdiffstats
path: root/servo/models/common.py
diff options
context:
space:
mode:
authorFilipp Lepalaan <filipp@mac.com>2021-06-14 21:49:26 +0300
committerFilipp Lepalaan <filipp@mac.com>2021-06-14 21:49:26 +0300
commit612e893bc87c4a81e2a98de75c2242c319edcaf9 (patch)
treec576ffc15c5b57bf68ce0c7430f5db96f2d35faa /servo/models/common.py
parentd988adbdaf57bb5e82823a416f92fa6995d59589 (diff)
downloadServo-612e893bc87c4a81e2a98de75c2242c319edcaf9.tar.gz
Servo-612e893bc87c4a81e2a98de75c2242c319edcaf9.tar.bz2
Servo-612e893bc87c4a81e2a98de75c2242c319edcaf9.zip
Testing for django.core.exceptions.ImproperlyConfigured
Diffstat (limited to 'servo/models/common.py')
-rw-r--r--servo/models/common.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/servo/models/common.py b/servo/models/common.py
index b1b756f..2c7fa08 100644
--- a/servo/models/common.py
+++ b/servo/models/common.py
@@ -46,7 +46,9 @@ class CsvTable(object):
self.header = u''
def padrow(self, row):
- """Pad row to self.colwdith"""
+ """
+ Pad row to self.colwdith
+ """
r = []
for c in row:
r.append(str(c).ljust(self.colwidth))