Skip to content

Commit

Permalink
fixed minor bug in in OTB provider
Browse files Browse the repository at this point in the history
git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@232 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d
  • Loading branch information
volayaf committed Jun 8, 2012
1 parent 9de737a commit 42d60c7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .settings/org.eclipse.core.resources.prefs
@@ -1,6 +1,7 @@
#Thu May 31 18:14:09 CEST 2012
#Thu Jun 07 09:09:17 CEST 2012
eclipse.preferences.version=1
encoding//src/sextante/ftools/ftools_utils.py=utf-8
encoding//src/sextante/gui/ParametersDialog.py=latin1
encoding//src/sextante/gui/ui_ParametersDialog.py=utf-8
encoding//src/sextante/gui/ui_SextanteToolbox.py=utf-8
encoding//src/sextante/resources.py=utf-8
2 changes: 1 addition & 1 deletion src/sextante/otb/OTBAlgorithmProvider.py
Expand Up @@ -29,7 +29,7 @@ def createAlgsList(self):
self.preloadedAlgs = []
folder = OTBUtils.otbDescriptionPath()
for descriptionFile in os.listdir(folder):
if descriptionFile.endswith("rsx"):
if descriptionFile.endswith("txt"):
try:
alg = OTBAlgorithm(os.path.join(folder, descriptionFile))
if alg.name.strip() != "":
Expand Down

0 comments on commit 42d60c7

Please sign in to comment.