From ec6440f1f48a99af78968814915b182a3069bd6a Mon Sep 17 00:00:00 2001 From: Philip Eisenlohr Date: Tue, 8 Oct 2013 13:54:13 +0000 Subject: [PATCH] when adding labels now making sure that they get processed during output writing --- lib/damask/asciitable.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/damask/asciitable.py b/lib/damask/asciitable.py index 2cd94c287..05e6d8a59 100644 --- a/lib/damask/asciitable.py +++ b/lib/damask/asciitable.py @@ -122,6 +122,8 @@ class ASCIItable(): for item in what: self.labels_append(item) else: self.labels += [str(what)] + self.__IO__['labels'] = True # switch on processing (in particular writing) of labels + # ------------------------------------------------------------------ def labels_clear(self): self.labels = []