Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[processing] reset progress bar after alg has finished running
  • Loading branch information
volaya committed Jun 20, 2014
1 parent 3c7f5c9 commit 253f5a9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion python/plugins/processing/core/GeoAlgorithm.py
Expand Up @@ -205,7 +205,7 @@ def execute(self, progress, model=None):
it should be called using this method, since it performs
some additional operations.
Raises a GeoAlgorithmExecutionException in case anything goe
Raises a GeoAlgorithmExecutionException in case anything goes
wrong.
"""
self.model = model
Expand All @@ -215,6 +215,7 @@ def execute(self, progress, model=None):
self.checkOutputFileExtensions()
self.runPreExecutionScript(progress)
self.processAlgorithm(progress)
progress.setPercentage(100)
self.convertUnsupportedFormats(progress)
self.runPostExecutionScript(progress)
except GeoAlgorithmExecutionException, gaee:
Expand Down

0 comments on commit 253f5a9

Please sign in to comment.