Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[processing] fix typo in the algorithm name (fix #12227)
  • Loading branch information
alexbruy committed Apr 19, 2015
1 parent 466fe70 commit 8ffa4ac
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions python/plugins/processing/algs/qgis/QGISAlgorithmProvider.py
Expand Up @@ -39,7 +39,7 @@
from processing.script.ScriptUtils import ScriptUtils

from RegularPoints import RegularPoints
from SymetricalDifference import SymetricalDifference
from SymmetricalDifference import SymmetricalDifference
from VectorSplit import VectorSplit
from VectorGrid import VectorGrid
from RandomExtract import RandomExtract
Expand Down Expand Up @@ -152,7 +152,7 @@ def __init__(self):
RandomSelection(), RandomSelectionWithinSubsets(),
SelectByLocation(), RandomExtract(),
RandomExtractWithinSubsets(), ExtractByLocation(),
SpatialJoin(), RegularPoints(), SymetricalDifference(),
SpatialJoin(), RegularPoints(), SymmetricalDifference(),
VectorSplit(), VectorGrid(), DeleteColumn(),
DeleteDuplicateGeometries(), TextToFloat(),
ExtractByAttribute(), SelectByAttribute(), Grid(),
Expand Down
Expand Up @@ -33,14 +33,14 @@
from processing.tools import dataobjects, vector


class SymetricalDifference(GeoAlgorithm):
class SymmetricalDifference(GeoAlgorithm):

INPUT = 'INPUT'
OVERLAY = 'OVERLAY'
OUTPUT = 'OUTPUT'

def defineCharacteristics(self):
self.name = 'Symetrical difference'
self.name = 'Symmetrical difference'
self.group = 'Vector overlay tools'
self.addParameter(ParameterVector(self.INPUT,
self.tr('Input layer'), [ParameterVector.VECTOR_TYPE_ANY]))
Expand Down

0 comments on commit 8ffa4ac

Please sign in to comment.