Skip to content

Commit

Permalink
Fix typo in install command
Browse files Browse the repository at this point in the history
  • Loading branch information
LucaScheller committed Mar 24, 2024
1 parent e9959bd commit a1612bf
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ To build the various resolvers, follow the instructions in the [install guide](h
To run the "Update Manager" simply run this snippet in the Houdini "Python Source Editor" or Maya "Script Editor" panel:

import ssl; from urllib import request
update_manager_url = 'https://raw.githubusercontent.com/LucaScheller/VFX-UsdAssetResolver/main/tools/update_manager.py?token=$(date +%s)'
update_manager_url = 'https://raw.githubusercontent.com/LucaScheller/VFX-UsdAssetResolver/main/tools/update_manager.py?token=$(date+%s)'
exec(request.urlopen(update_manager_url,context=ssl._create_unverified_context()).read(), globals(), locals())
run_dcc()

Expand Down
4 changes: 2 additions & 2 deletions docs/src/installation/automatic_install.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ In Houdini we simply need to open the "Python Source Editor" from the "Windows"
~~~admonish info title=""
```python
import ssl; from urllib import request
update_manager_url = 'https://raw.githubusercontent.com/LucaScheller/VFX-UsdAssetResolver/main/tools/update_manager.py?token=$(date +%s)'
update_manager_url = 'https://raw.githubusercontent.com/LucaScheller/VFX-UsdAssetResolver/main/tools/update_manager.py?token=$(date+%s)'
exec(request.urlopen(update_manager_url,context=ssl._create_unverified_context()).read(), globals(), locals())
run_dcc()
```
Expand All @@ -41,7 +41,7 @@ In Maya we simply need to open the "Script Editor" and run the following code to
~~~admonish info title=""
```python
import ssl; from urllib import request
update_manager_url = 'https://raw.githubusercontent.com/LucaScheller/VFX-UsdAssetResolver/main/tools/update_manager.py?token=$(date +%s)'
update_manager_url = 'https://raw.githubusercontent.com/LucaScheller/VFX-UsdAssetResolver/main/tools/update_manager.py?token=$(date+%s)'
exec(request.urlopen(update_manager_url,context=ssl._create_unverified_context()).read(), globals(), locals())
run_dcc()
```
Expand Down
2 changes: 1 addition & 1 deletion tools/update_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
# To run, execute this in the Houdini/Maya
"""
import ssl; from urllib import request
update_manager_url = 'https://raw.githubusercontent.com/LucaScheller/VFX-UsdAssetResolver/main/tools/update_manager.py?token=$(date +%s)'
update_manager_url = 'https://raw.githubusercontent.com/LucaScheller/VFX-UsdAssetResolver/main/tools/update_manager.py?token=$(date+%s)'
exec(request.urlopen(update_manager_url,context=ssl._create_unverified_context()).read(), globals(), locals())
run_dcc()
"""
Expand Down

0 comments on commit a1612bf

Please sign in to comment.