Skip to content

Commit

Permalink
fix pl == cygwin
Browse files Browse the repository at this point in the history
  • Loading branch information
wwakabobik committed Aug 2, 2023
1 parent ac5a482 commit 1bb3a9d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webdriver_manager/core/os_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def get_os_name():
return OSType.LINUX
elif pl == "darwin":
return OSType.MAC
elif pl == "win32" or "cygwin":
elif pl == "win32" or pl == "cygwin":
return OSType.WIN

@staticmethod
Expand Down

0 comments on commit 1bb3a9d

Please sign in to comment.