From 8d606bb23fa7e02248a4702bf7a773a8f27fc070 Mon Sep 17 00:00:00 2001 From: Paul McCarthy <pauldmccarthy@gmail.com> Date: Sun, 21 Jan 2018 16:39:44 +0000 Subject: [PATCH] What do you know, that silly test caught a bug --- fsl/utils/path.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fsl/utils/path.py b/fsl/utils/path.py index 69a30af35..76efc7760 100644 --- a/fsl/utils/path.py +++ b/fsl/utils/path.py @@ -82,7 +82,7 @@ def hasExt(path, allowedExts): """Convenience function which returns ``True`` if the given ``path`` ends with any of the given ``allowedExts``, ``False`` otherwise. """ - return any([path.endsWith(e) for e in allowedExts]) + return any([path.endswith(e) for e in allowedExts]) def addExt(prefix, -- GitLab