Skip to content

Commit

Permalink
get_visual_studio_version reg key is now a raw string
Browse files Browse the repository at this point in the history
  • Loading branch information
henryborchers committed Dec 10, 2024
1 parent 4dcb43f commit 8fdcfac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion uiucprescon/build/compiler_info.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ def get_visual_studio_version() -> str:
"8.0", "9.0", "10.0", "11.0", "12.0", "14.0", "15.0", "16.0"
]
installed_versions = []
key = "SOFTWARE\Microsoft\VisualStudio\%s"
key = r"SOFTWARE\Microsoft\VisualStudio\%s"

for v in possible_versions:
try:
Expand Down

0 comments on commit 8fdcfac

Please sign in to comment.