We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e1439c8 commit b455e30Copy full SHA for b455e30
1 file changed
pkg_resources/__init__.py
@@ -414,7 +414,7 @@ def _macos_vers(_cache=[]):
414
if version == '':
415
plist = '/System/Library/CoreServices/SystemVersion.plist'
416
if os.path.exists(plist):
417
- with open(plist, 'rb) as fh:
+ with open(plist, 'rb') as fh:
418
plist_content = plistlib.load(fh)
419
if 'ProductVersion' in plist_content:
420
version = plist_content['ProductVersion']
0 commit comments