Skip to content

Commit

Permalink
Update pkg_resources/__init__.py
Browse files Browse the repository at this point in the history
  • Loading branch information
DimitriPapadopoulos committed Jan 4, 2024
1 parent e1439c8 commit b455e30
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg_resources/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -414,7 +414,7 @@ def _macos_vers(_cache=[]):
if version == '':
plist = '/System/Library/CoreServices/SystemVersion.plist'
if os.path.exists(plist):
with open(plist, 'rb) as fh:
with open(plist, 'rb') as fh:
plist_content = plistlib.load(fh)
if 'ProductVersion' in plist_content:
version = plist_content['ProductVersion']
Expand Down

0 comments on commit b455e30

Please sign in to comment.