Skip to content

Commit

Permalink
Fix windows issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Kidev committed Jan 18, 2025
1 parent fcd55e1 commit e9ae059
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aqt/helper.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def get_os_name() -> str:
return "mac"
if system == "linux":
return "linux"
if system == "windows":
if system in ("windows", "win32"): # Accept both windows and win32
return "windows"
raise ValueError(f"Unsupported operating system: {system}")

Expand Down

0 comments on commit e9ae059

Please sign in to comment.