Skip to content

Commit

Permalink
Fix python import snippet for windows (#1737)
Browse files Browse the repository at this point in the history
  • Loading branch information
giotherobot authored Nov 11, 2024
1 parent b55f198 commit 8c20e5d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/cmake-options.md
Original file line number Diff line number Diff line change
Expand Up @@ -375,7 +375,7 @@ import os

if os.name == "nt":
superbuild_dll_path = os.path.join(os.environ.get('ROBOTOLOGY_SUPERBUILD_INSTALL_PREFIX',""), 'bin')
if (os.exists(superbuild_dll_path)):
if (os.path.exists(superbuild_dll_path)):
os.add_dll_directory(superbuild_dll_path)
~~~

Expand Down

0 comments on commit 8c20e5d

Please sign in to comment.