From b6762b7dc9629dbf18e45f60caaf827476add512 Mon Sep 17 00:00:00 2001 From: Alexandre Duret-Lutz Date: Mon, 16 Mar 2015 16:41:31 +0100 Subject: [PATCH] * wrap/python/spot.py: Typo. --- wrap/python/spot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wrap/python/spot.py b/wrap/python/spot.py index 8b583c8b9..808a50ade 100644 --- a/wrap/python/spot.py +++ b/wrap/python/spot.py @@ -132,7 +132,7 @@ def translate(formula, output='tgba', pref='small', level='high', level_ = level.lower() if level_ == 'high': level = postprocessor.High - elif level_.starswith('med'): + elif level_.startswith('med'): level = postprocessor.Medium elif level_ == 'low': level = postprocessor.Low