fix indentation

This commit is contained in:
Alexander Bruy 2016-01-13 18:30:08 +02:00
parent 864e1921e6
commit b146c3edfc
4 changed files with 7 additions and 8 deletions

View File

@ -81,7 +81,7 @@ class OTBAlgorithm(GeoAlgorithm):
folder = OTBUtils.compatibleDescriptionPath(version)
if folder is None:
return False, None
folder = os.path.join(folder, 'doc')
folder = os.path.join(folder, 'doc')
helpfile = os.path.join(unicode(folder), self.appkey + ".html")
if os.path.exists(helpfile):
return False, helpfile

View File

@ -67,11 +67,9 @@ class OTBAlgorithmProvider(AlgorithmProvider):
folder = OTBUtils.compatibleDescriptionPath(version)
if folder is None:
ProcessingLog.addToLog(ProcessingLog.LOG_ERROR,
self.tr('Problem with OTB installation: installed OTB version (%s) is not supported' % version))
self.tr('Problem with OTB installation: installed OTB version (%s) is not supported' % version))
return
for descriptionFile in os.listdir(folder):
if descriptionFile.endswith("xml"):
try:
@ -111,4 +109,3 @@ class OTBAlgorithmProvider(AlgorithmProvider):
AlgorithmProvider.unload(self)
ProcessingConfig.removeSetting(OTBUtils.OTB_FOLDER)
ProcessingConfig.removeSetting(OTBUtils.OTB_LIB_FOLDER)

View File

@ -135,7 +135,7 @@ def getInstalledVersion(runOtb=False):
if _installedVersionFound and not runOtb:
return _installedVersion
commands =[os.path.join(otbPath(), "otbcli_Smoothing")]
commands = [os.path.join(otbPath(), "otbcli_Smoothing")]
progress = SilentProgress()
out = executeOtb(commands, progress, False)
for line in out:
@ -145,6 +145,7 @@ def getInstalledVersion(runOtb=False):
break
return _installedVersion
def compatibleDescriptionPath(version):
supportedVersions = {"5.0.0": "5.0.0"}
if version is None:
@ -158,7 +159,8 @@ def compatibleDescriptionPath(version):
return os.path.join(otbDescriptionPath(), supportedVersions[version])
def executeOtb(commands, progress, addToLog = True):
def executeOtb(commands, progress, addToLog=True):
loglines = []
loglines.append(tr("OTB execution console output"))
os.putenv('ITK_AUTOLOAD_PATH', otbLibPath())

View File

@ -29,4 +29,4 @@ for i, feat in enumerate(feats):
counts[clazz] += 1
for c in counts:
writer.addRecord(list(c) + [counts[c]])
writer.addRecord(list(c) + [counts[c]])