[processing] Fix exception when dropping model file on qgis window

This commit is contained in:
Nyall Dawson 2018-07-10 11:12:48 +10:00
parent 87bce6ad7e
commit 61cc8b5774

View File

@ -75,6 +75,7 @@ class ProcessingDropHandler(QgsCustomDropHandler):
if not file.lower().endswith('.model3'):
return False
self.runAlg(file)
return True
@staticmethod
def runAlg(file):