From 74c9e03e2a4cad0403854b6ea3384de53bbd37af Mon Sep 17 00:00:00 2001 From: Thomas Applencourt Date: Thu, 16 Apr 2015 13:35:29 +0200 Subject: [PATCH] Try to solve the 'Bool.of_string: expected true or false but got True' --- scripts/ezfio_interface/ei_handler.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/ezfio_interface/ei_handler.py b/scripts/ezfio_interface/ei_handler.py index a02b13d5..a940c584 100755 --- a/scripts/ezfio_interface/ei_handler.py +++ b/scripts/ezfio_interface/ei_handler.py @@ -70,9 +70,9 @@ def is_bool(str_): Take a string, if is a bool return the conversion into fortran and ocaml. """ - if "true" in str_.lower(): + if "true" in str_.stirp().lower(): return Type(None, "true", ".True.") - elif "false" in str_.lower(): + elif "false" in str_.stirp().lower(): return Type(None, "false", ".False") else: raise TypeError