We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a63cab7 commit 01434e8Copy full SHA for 01434e8
python/plugins/processing/algs/otb/OTBUtils.py
@@ -135,6 +135,9 @@ def getInstalledVersion(runOtb=False):
135
if _installedVersionFound and not runOtb:
136
return _installedVersion
137
138
+ if otbPath() is None:
139
+ _installedVersionFound = False
140
+ return None
141
commands = [os.path.join(otbPath(), "otbcli_Smoothing")]
142
progress = SilentProgress()
143
out = executeOtb(commands, progress, False)
0 commit comments