From 342c13a9a848f0bcca3072ab5f7724fa42dc4439 Mon Sep 17 00:00:00 2001 From: dokato Date: Fri, 4 Oct 2019 12:49:25 +0100 Subject: [PATCH] fixing formatting error --- tvb/simulator/simulator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tvb/simulator/simulator.py b/tvb/simulator/simulator.py index a4f5e4711..298914688 100644 --- a/tvb/simulator/simulator.py +++ b/tvb/simulator/simulator.py @@ -452,7 +452,7 @@ def _configure_history(self, initial_conditions): return self._configure_history(initial_conditions) elif ic_shape[1:] != self.good_history_shape[1:]: raise ValueError("Incorrect history sample shape %s, expected %s" - % ic_shape[1:], self.good_history_shape[1:]) + % (ic_shape[1:], self.good_history_shape[1:])) else: if ic_shape[0] >= self.horizon: LOG.debug("Using last %d time-steps for history.", self.horizon)