Skip to content

Commit 64d1a92

Browse files
committed
Fix syntax error
I pushed the wrong commit O.o
1 parent 7ae4a88 commit 64d1a92

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/test/test_tarfile.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3043,7 +3043,7 @@ def check_context(self, tar, filter):
30433043
self.raised_exception = None
30443044
try:
30453045
self.expected_paths = set(self.outerdir.glob('**/*'))
3046-
except OSError as err
3046+
except OSError as err:
30473047
if getattr(err, 'winerror', None) == 123:
30483048
# 123 is Windows error ERROR_INVALID_NAME
30493049
# glob() fails this way when symlink targets are too long

0 commit comments

Comments
 (0)