Skip to content

Commit

Permalink
Merge pull request #622 from Autodesk/donnels/MAYA-105232/misc_fixes_…
Browse files Browse the repository at this point in the history
…for_python3

MAYA-105232 - misc fixes for python3
  • Loading branch information
Krystian Ligenza authored Jul 6, 2020
2 parents 6650ba3 + 1e7a347 commit a2a3414
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 a2a3414

Please sign in to comment.