From afe9d2473181288658e33c703142b76c4b456526 Mon Sep 17 00:00:00 2001 From: decalage2 Date: Wed, 27 Mar 2019 18:40:21 +0100 Subject: [PATCH] tablestream: slight fix, TableStyleSlim inherits from TableStyle --- oletools/thirdparty/tablestream/tablestream.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/oletools/thirdparty/tablestream/tablestream.py b/oletools/thirdparty/tablestream/tablestream.py index dcc82ab..cd5a924 100644 --- a/oletools/thirdparty/tablestream/tablestream.py +++ b/oletools/thirdparty/tablestream/tablestream.py @@ -55,8 +55,9 @@ from __future__ import print_function # 2016-08-28 v0.07 PL: - support for both Python 2.6+ and 3.x # - all cells are converted to unicode # 2018-09-22 v0.08 PL: - removed mention to oletools' thirdparty folder +# 2019-03-27 v0.09 PL: - slight fix, TableStyleSlim inherits from TableStyle -__version__ = '0.08' +__version__ = '0.09' #------------------------------------------------------------------------------ # TODO: @@ -174,7 +175,7 @@ class TableStyle(object): bottom_right = u'+' -class TableStyleSlim(object): +class TableStyleSlim(TableStyle): """ Style for a TableStream. Example: -- libgit2 0.21.4