diff options
Diffstat (limited to 'dealconvert')
-rw-r--r-- | dealconvert/formats/html.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dealconvert/formats/html.py b/dealconvert/formats/html.py index a60b3a3..758c0fc 100644 --- a/dealconvert/formats/html.py +++ b/dealconvert/formats/html.py @@ -81,7 +81,7 @@ class HTMLFormat(DealFormat): return '.html' def __init__(self, *args, **kwargs): - self.deals_per_column = kwargs.get('columns', 6) + self.deals_per_column = kwargs.get('columns', 6) or 6 def parse_content(self, content): raise NotImplementedError |