Skip to content

Commit 687b073

Browse files
authored
Update methods.py
1 parent 01afa5d commit 687b073

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

methods.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -993,7 +993,7 @@ def glob_recursive_2(pattern, dirs, node="."):
993993
def glob_current_and_custom(pattern, dirs):
994994
paths = ["."]
995995
if env["custom_modules"]:
996-
paths += env["custom_modules"].split(",")
996+
paths = paths + env["custom_modules"].split(",")
997997
results = []
998998
for p in paths:
999999
results = results + glob_recursive_2(pattern, dirs, p)

0 commit comments

Comments
 (0)