Skip to content

Commit b114085

Browse files
committedOct 4, 2014
[processing] fixed crs checking before running alg
1 parent 2b181cb commit b114085

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎python/plugins/processing/core/GeoAlgorithm.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -383,7 +383,7 @@ def checkInputCRS(self):
383383
crs = dataobjects.getObject(item).crs()
384384
if crs not in crsList:
385385
crsList.append(crs)
386-
return len(crsList) == 1
386+
return len(crsList) < 2
387387

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

0 commit comments

Comments
 (0)
Please sign in to comment.