Skip to content

Commit

Permalink
Some Windows versions may return 'Microsoft' for platform
Browse files Browse the repository at this point in the history
  • Loading branch information
WardBrian committed May 14, 2024
1 parent 41e0520 commit fc200c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dllist/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
from .unix_like import _platform_specific_dllist
elif _system.startswith("darwin"):
from .macos import _platform_specific_dllist
elif _system.startswith("windows"):
elif _system.startswith("windows") or _system.startswith("microsoft"):
from .windows import _platform_specific_dllist
else:

Expand Down

0 comments on commit fc200c5

Please sign in to comment.