From 6dc0b206e9e0215688941366bbab527288d136d1 Mon Sep 17 00:00:00 2001 From: Sebastian Wehling-Benatelli Date: Wed, 20 May 2015 11:20:37 +0200 Subject: [PATCH] changed string representation of data object --- pylot/core/read/data.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pylot/core/read/data.py b/pylot/core/read/data.py index c571e3df..62505a03 100644 --- a/pylot/core/read/data.py +++ b/pylot/core/read/data.py @@ -51,7 +51,7 @@ class Data(object): self.dirty = False def __str__(self): - return str(self.evtdata), '\n', str(self.wfdata) + return str(self.wfdata) def getParent(self): return self._parent