avoid bare 'except'

This commit is contained in:
Alexander Bruy 2021-06-20 08:02:11 +03:00
parent 12f012eb20
commit 90521e660d
4 changed files with 8 additions and 8 deletions

View File

@ -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())

View File

@ -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

View File

@ -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:

View File

@ -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):