Skip to content

Commit 58e300e

Browse files
committed
Upgrade Houdini install script to PySide6
1 parent 0796c07 commit 58e300e

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

tools/update_manager.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,11 @@
1010
import zipfile
1111
from urllib import request
1212

13-
from PySide2 import QtCore, QtGui, QtWidgets
13+
try:
14+
from PySide6 import QtCore, QtGui, QtWidgets
15+
except ImportError:
16+
from PySide2 import QtCore, QtGui, QtWidgets
17+
1418

1519
# To run, execute this in the Houdini/Maya
1620
"""

0 commit comments

Comments
 (0)