From 7eaa5aad28de9676658acc5ee5f9b804c978a517 Mon Sep 17 00:00:00 2001 From: sb Date: Fri, 13 Mar 2020 19:50:45 -0400 Subject: [PATCH] getting the order of verbose messages right in checkCondition() --- HARK/ConsumptionSaving/ConsIndShockModel.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/HARK/ConsumptionSaving/ConsIndShockModel.py b/HARK/ConsumptionSaving/ConsIndShockModel.py index b84b05f81..65f7414d7 100644 --- a/HARK/ConsumptionSaving/ConsIndShockModel.py +++ b/HARK/ConsumptionSaving/ConsIndShockModel.py @@ -1868,11 +1868,11 @@ def checkCondition(self, print(messages[0].format(self) if self.conditions[name] - else messages[3].format(self)) + else messages[2].format(self)) if verbose: print(messages[1].format(self) if self.conditions[name] - else messages[2].format(self)) + else messages[3].format(self)) def checkAIC(self, verbose = False):