Skip to content

Commit

Permalink
[processing] fixed SAGA version handling
Browse files Browse the repository at this point in the history
Conflicts:
	python/plugins/processing/algs/saga/SagaAlgorithmProvider.py
  • Loading branch information
volaya committed Oct 24, 2015
1 parent 4550890 commit 3ac5d0b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion python/plugins/processing/algs/saga/SagaAlgorithmProvider.py
Expand Up @@ -46,7 +46,9 @@ class SagaAlgorithmProvider(AlgorithmProvider):
supportedVersions = {"2.1.2": ("2.1.2", SagaAlgorithm212),
"2.1.3": ("2.1.3", SagaAlgorithm213),
"2.1.4": ("2.1.4", SagaAlgorithm214),
"2.2.0": ("2.2.0", SagaAlgorithm214)}
"2.2.0": ("2.2.0", SagaAlgorithm214),
"2.2.1": ("2.2.0", SagaAlgorithm214),
"2.2.2": ("2.2.2", SagaAlgorithm214)}

def __init__(self):
AlgorithmProvider.__init__(self)
Expand Down

0 comments on commit 3ac5d0b

Please sign in to comment.