From 15b0f6838f5a321916d694bd5de79f84ada1f503 Mon Sep 17 00:00:00 2001 From: Timothy Crosley Date: Fri, 8 Mar 2019 23:23:16 -0800 Subject: Fix issue with */ style glob tests --- isort/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/isort/settings.py b/isort/settings.py index 6504be53..525c1315 100644 --- a/isort/settings.py +++ b/isort/settings.py @@ -402,7 +402,7 @@ def file_should_be_skipped( position = os.path.split(position[0]) for glob in config['skip_glob']: - if fnmatch.fnmatch(filename, glob): + if fnmatch.fnmatch(filename, glob) or fnmatch.fnmatch('/' + filename, glob): return True if not (os.path.isfile(os_path) or os.path.isdir(os_path) or os.path.islink(os_path)): -- cgit v1.2.1