Skip to content

Commit

Permalink
MAYA-105232 - misc fixes for python3
Browse files Browse the repository at this point in the history
  • Loading branch information
seando-adsk committed Jul 3, 2020
1 parent 37d9301 commit 1e7a347
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion build.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ def GetVisualStudioCompilerAndVersion():
# VisualStudioVersion environment variable should be set by the
# Visual Studio Command Prompt.
match = re.search(
"(\d+).(\d+)",
r"(\d+)\.(\d+)",
os.environ.get("VisualStudioVersion", ""))
if match:
return (msvcCompiler, tuple(int(v) for v in match.groups()))
Expand Down
1 change: 0 additions & 1 deletion plugin/al/usdtransaction/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ foreach(INPUT_FILE ${PY_INIT_FILES})
get_filename_component(OUTPUT_PATH ${OUTPUT_FILE} DIRECTORY)
install(FILES
${INPUT_FILE} # .py files
${INPUT_FILE}c # .pyc files
DESTINATION ${OUTPUT_PATH}
)
endforeach()
Expand Down

0 comments on commit 1e7a347

Please sign in to comment.