| commit | 0a6c200eecea30ee403bc34c043a75ea4b99c38c | [log] [tgz] |
|---|---|---|
| author | jamesharrow <93921463+jamesharrow@users.noreply.github.com> | Thu Jun 05 15:48:21 2025 +0100 |
| committer | GitHub <noreply@github.com> | Thu Jun 05 10:48:21 2025 -0400 |
| tree | 92400a7ae7054883a29749563a25c691286912f5 | |
| parent | 32831a02d876a6960e0333cf4bd9b10dda298c68 [diff] |
Fixed glob.glob(include_hidden=True) which isn't available in Python 3.10.12 (#39409)
diff --git a/scripts/tools/zap/generate.py b/scripts/tools/zap/generate.py index b63adbf..893835c 100755 --- a/scripts/tools/zap/generate.py +++ b/scripts/tools/zap/generate.py
@@ -269,7 +269,7 @@ path = path[:s] + '*' + path[e+1:] # path is a glob target, expand it - for result in glob.glob(path, include_hidden=True): + for result in glob.glob(path): yield result