From faa63c90c8e7cb31fd9c99e28f4132d92baa955e Mon Sep 17 00:00:00 2001 From: Jeremiah Leary Date: Tue, 7 May 2024 21:00:28 -0500 Subject: [PATCH] Issue#38: Tests would fail if temp file opened by editor. (#40) --- elfws/utils.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/elfws/utils.py b/elfws/utils.py index c51561d..ffe4cb2 100644 --- a/elfws/utils.py +++ b/elfws/utils.py @@ -249,6 +249,8 @@ def get_tools(sVendor): continue if sListing == 'utils.py': continue + if sListing.startswith('.'): + continue lReturn.append(remove_extension(sListing)) return lReturn