Skip to content

Commit b455e30

Browse files
Update pkg_resources/__init__.py
1 parent e1439c8 commit b455e30

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

pkg_resources/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -414,7 +414,7 @@ def _macos_vers(_cache=[]):
414414
if version == '':
415415
plist = '/System/Library/CoreServices/SystemVersion.plist'
416416
if os.path.exists(plist):
417-
with open(plist, 'rb) as fh:
417+
with open(plist, 'rb') as fh:
418418
plist_content = plistlib.load(fh)
419419
if 'ProductVersion' in plist_content:
420420
version = plist_content['ProductVersion']

0 commit comments

Comments
 (0)