Skip to content

Commit

Permalink
[processing] fixed wrong imports
Browse files Browse the repository at this point in the history
  • Loading branch information
volaya committed Jun 10, 2014
1 parent 744db2f commit 7d4659d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Expand Up @@ -39,8 +39,8 @@
GeoAlgorithmExecutionException
from processing.gui.UnthreadedAlgorithmExecutor import \
UnthreadedAlgorithmExecutor
from processing.gui.Postprocessing import Postprocessing
from processing.tools import dataobjects
from processing.gui.Postprocessing import handleAlgorithmResults

from ui_DlgFieldsCalculator import Ui_FieldsCalculator

Expand Down Expand Up @@ -200,7 +200,7 @@ def accept(self):
ret = UnthreadedAlgorithmExecutor.runalg(self.alg, self)
QApplication.restoreOverrideCursor()
if ret:
Postprocessing.handleAlgorithmResults(self.alg,
handleAlgorithmResults(self.alg,
self,
not keepOpen)
self.executed = True
Expand Down
2 changes: 1 addition & 1 deletion python/plugins/processing/gui/AlgorithmClassification.py
Expand Up @@ -51,7 +51,7 @@ def loadClassification():

@staticmethod
def classificationFile():
return os.path.join(os.path.join(os.path.dirname(__file__), 'algclasssification.txt')
return os.path.join(os.path.join(os.path.dirname(__file__), 'algclasssification.txt'))

@staticmethod
def getGroupsAndName(alg):
Expand Down

0 comments on commit 7d4659d

Please sign in to comment.