From b0068e0dcea9bd48d7fb70f98745d87bc68c4c4b Mon Sep 17 00:00:00 2001 From: Alan Mason <1923621+2Shirt@users.noreply.github.com> Date: Mon, 4 Dec 2017 07:43:53 -0800 Subject: [PATCH] Bugfix: browsers.py * Profile backup detection fixed --- .bin/Scripts/functions/browsers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.bin/Scripts/functions/browsers.py b/.bin/Scripts/functions/browsers.py index 20fefb97..dd492912 100644 --- a/.bin/Scripts/functions/browsers.py +++ b/.bin/Scripts/functions/browsers.py @@ -16,7 +16,7 @@ other_results = { # Regex REGEX_BACKUP = re.compile( - r'\.\w+bak.*', + r'\.\w*bak.*', re.IGNORECASE) REGEX_CHROMIUM_PROFILE = re.compile( r'^(Default|Profile)',