From d46e2b434ecf0a8f53782fc658381e0135f19a51 Mon Sep 17 00:00:00 2001 From: fjosw Date: Thu, 12 May 2022 09:55:44 +0000 Subject: [PATCH] Documentation updated --- docs/pyerrors/input/hadrons.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/pyerrors/input/hadrons.html b/docs/pyerrors/input/hadrons.html index 09026c97..fa8fca0e 100644 --- a/docs/pyerrors/input/hadrons.html +++ b/docs/pyerrors/input/hadrons.html @@ -104,7 +104,7 @@ 11 ls = os.listdir(path) 12 13 # Clean up file list - 14 files = list(filter(lambda x: x.startswith(filestem), ls)) + 14 files = list(filter(lambda x: x.startswith(filestem + "."), ls)) 15 16 if not files: 17 raise Exception('No files starting with', filestem, 'in folder', path)