mirror of
https://github.com/qgis/QGIS.git
synced 2025-12-03 00:04:37 -05:00
avoid bare 'except'
This commit is contained in:
parent
12f012eb20
commit
90521e660d
@ -130,7 +130,7 @@ class Grass7Utils:
|
||||
if line.startswith("7."):
|
||||
Grass7Utils.version = line
|
||||
return Grass7Utils.version
|
||||
except:
|
||||
except Exception:
|
||||
pass
|
||||
|
||||
return None
|
||||
@ -398,7 +398,7 @@ class Grass7Utils:
|
||||
if 'GRASS_INFO_PERCENT' in line:
|
||||
try:
|
||||
feedback.setProgress(int(line[len('GRASS_INFO_PERCENT') + 2:]))
|
||||
except:
|
||||
except Exception:
|
||||
pass
|
||||
else:
|
||||
if 'r.out' in line or 'v.out' in line:
|
||||
@ -449,7 +449,7 @@ class Grass7Utils:
|
||||
try:
|
||||
feedback.setProgress(int(
|
||||
line[len('GRASS_INFO_PERCENT') + 2:]))
|
||||
except:
|
||||
except Exception:
|
||||
pass
|
||||
if any(l in line for l in ['WARNING', 'ERROR']):
|
||||
loglines.append(line.strip())
|
||||
|
||||
@ -158,7 +158,7 @@ class OtbParameterChoice(QgsProcessingParameterDefinition):
|
||||
if default is not None:
|
||||
try:
|
||||
self.default = int(default)
|
||||
except:
|
||||
except Exception:
|
||||
self.default = 0
|
||||
self.value = self.default
|
||||
|
||||
|
||||
@ -187,7 +187,7 @@ class OtbUtils:
|
||||
if int(percent) >= 100:
|
||||
feedback.pushConsoleInfo(line)
|
||||
feedback.setProgress(int(percent))
|
||||
except:
|
||||
except Exception:
|
||||
pass
|
||||
else:
|
||||
if feedback is None:
|
||||
|
||||
@ -153,7 +153,7 @@ def getInstalledVersion(runSaga=False):
|
||||
return None
|
||||
except IOError:
|
||||
retries += 1
|
||||
except:
|
||||
except Exception:
|
||||
return None
|
||||
|
||||
return _installedVersion
|
||||
@ -186,14 +186,14 @@ def executeSaga(feedback):
|
||||
s = ''.join(x for x in line if x.isdigit())
|
||||
try:
|
||||
feedback.setProgress(int(s))
|
||||
except:
|
||||
except Exception:
|
||||
pass
|
||||
else:
|
||||
line = line.strip()
|
||||
if line not in ['/', '-', '\\', '|']:
|
||||
loglines.append(line)
|
||||
feedback.pushConsoleInfo(line)
|
||||
except:
|
||||
except Exception:
|
||||
pass
|
||||
|
||||
if ProcessingConfig.getSetting(SAGA_LOG_CONSOLE):
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user