Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[processing] fixed crs checking before running alg
  • Loading branch information
volaya committed Oct 4, 2014
1 parent 2b181cb commit b114085
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/processing/core/GeoAlgorithm.py
Expand Up @@ -383,7 +383,7 @@ def checkInputCRS(self):
crs = dataobjects.getObject(item).crs()
if crs not in crsList:
crsList.append(crs)
return len(crsList) == 1
return len(crsList) < 2

def addOutput(self, output):
# TODO: check that name does not exist
Expand Down

0 comments on commit b114085

Please sign in to comment.