Skip to content

Commit dc3e329

Browse files
committed
Fix SF #433233: syntax error.
1 parent 87ce6ac commit dc3e329

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Lib/statcache.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@ def forget_dir(prefix):
4949
prefix = os.path.dirname(os.path.join(prefix, "xxx"))
5050
forget(prefix)
5151
for path in cache.keys():
52-
if path.startswith(prefix) and os.path.dirname(path) == prefix:
53-
forget(path)
52+
if path.startswith(prefix) and os.path.dirname(path) == prefix:
53+
forget(path)
5454

5555
def forget_except_prefix(prefix):
5656
"""Remove all pathnames except with a given prefix.

0 commit comments

Comments
 (0)