Skip to content

Commit a0da72a

Browse files
committed
Resolve API Python check
Improved updates check App icons
1 parent 817b26a commit a0da72a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

mots_resolve.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,8 @@ def __init__(self, logger=None):
6161
self.bmd = None
6262

6363
# only initialize the Resolve API if the Python version check is successful
64-
if self.python_check():
64+
# (if the user did not pass --skip-python-check via the command line)
65+
if self.python_check() or '--skip-python-check' in sys.argv:
6566

6667
# initialize the Resolve API
6768
self.api = self.get_resolve()

0 commit comments

Comments
 (0)