From c91e493eac61157f60954deb6eb18d6f674ec61e Mon Sep 17 00:00:00 2001 From: John ZuHone Date: Wed, 14 Apr 2021 13:21:55 -0400 Subject: [PATCH] Fix for case-insensitivity --- backstop_history/BackstopHistory.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backstop_history/BackstopHistory.py b/backstop_history/BackstopHistory.py index 6c0c19b..e6f3bb7 100644 --- a/backstop_history/BackstopHistory.py +++ b/backstop_history/BackstopHistory.py @@ -384,7 +384,7 @@ def get_bs_cmds(self, oflsdir): in ofls directory that represents the built load. - list of dictionary items """ - backstop_file_path = globfile(os.path.join(oflsdir, 'CR*.backstop')) + backstop_file_path = globfile(os.path.join(oflsdir, 'CR[0-9]*.backstop')) self.logger.info("GET_BS_CMDS - Using backstop file %s" % backstop_file_path)