Skip to content

Commit

Permalink
Followup 80653c7, add missed algorithm
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed Sep 2, 2016
1 parent 01da222 commit 795b52e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/processing/algs/qgis/PointsAlongGeometry.py
Expand Up @@ -65,7 +65,7 @@ def defineCharacteristics(self):
self.tr('Start offset'), default=0.0))
self.addParameter(ParameterNumber(self.END_OFFSET,
self.tr('End offset'), default=0.0))
self.addOutput(OutputVector(self.OUTPUT, self.tr('Points')))
self.addOutput(OutputVector(self.OUTPUT, self.tr('Points'), datatype=[dataobjects.TYPE_VECTOR_POINT]))

def processAlgorithm(self, progress):
layer = dataobjects.getObjectFromUri(
Expand Down

0 comments on commit 795b52e

Please sign in to comment.