From ed0361a7c9ac8ec811e403ce1cc734ebee29fd04 Mon Sep 17 00:00:00 2001 From: Tamas Gal <tgal@km3net.de> Date: Wed, 7 Oct 2020 14:01:08 +0200 Subject: [PATCH] Apply 1 suggestion(s) to 1 file(s) --- km3io/tools.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/km3io/tools.py b/km3io/tools.py index 910d24c..4f2b4d1 100644 --- a/km3io/tools.py +++ b/km3io/tools.py @@ -277,7 +277,7 @@ def best_track(tracks, start=None, end=None, stages=None): raise ValueError("No reconstruction stages were specified") if ((start is not None) or (end is not None)) and (stages is not None): - raise ValueError("too many inputs are specified") + raise ValueError("Please specify either a range or a set of rec stages.") return _max_lik_track(_longest_tracks(selected_tracks)) -- GitLab