From edd143b423a45055a78899e9183ee5e79394338d Mon Sep 17 00:00:00 2001 From: Martin Diehl Date: Tue, 3 Mar 2020 07:00:14 +0100 Subject: [PATCH] bugfix for copy and paste error introduced in 8798dd1af3df9051f577baf4c40ab40196e5b757 --- python/damask/result.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/damask/result.py b/python/damask/result.py index 7a77ea3d7..733a5d2e1 100644 --- a/python/damask/result.py +++ b/python/damask/result.py @@ -177,7 +177,7 @@ class Result(): if last_datasets != self.selection[what]: self._manage_selection('set',what,datasets) raise Exception - self._manage_selection('set',what,datasets) + self._manage_selection('set',what,dataset) last_datasets = self.selection[what] yield dataset self._manage_selection('set',what,datasets)