diff options
author | emkael <emkael@tlen.pl> | 2019-11-07 21:11:40 +0100 |
---|---|---|
committer | emkael <emkael@tlen.pl> | 2019-11-07 21:11:40 +0100 |
commit | f184ae973d08779532725aafef5718993aff3dc4 (patch) | |
tree | ce7f0466044c11484fa20ec688bb97c48ba9aaa9 /dealconvert | |
parent | 62f9821422765d2dd24271f21de68d388949f97a (diff) |
*
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 |