Skip to content

Commit e6cdc36

Browse files
committed
Correct inverted cancellation test
1 parent c82461f commit e6cdc36

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

addonmanager_dependency_installer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ def _install_required(self, vendor_path: str) -> bool:
125125
for pymod in self.python_requires:
126126
if pymod.lower().startswith("pyside"):
127127
continue # Do not attempt to install PySide, which must be part of FreeCAD already
128-
if not QtCore.QThread.currentThread().isInterruptionRequested():
128+
if QtCore.QThread.currentThread().isInterruptionRequested():
129129
return False
130130
try:
131131
proc = self._run_pip(

0 commit comments

Comments
 (0)