File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
python/plugins/processing/algs/saga Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change 29
29
import os
30
30
import importlib
31
31
import subprocess
32
+ from PyQt4 .QtCore import QCoreApplication
32
33
from PyQt4 .QtGui import QIcon
33
34
from processing .core .GeoAlgorithm import GeoAlgorithm
34
35
from processing .core .ProcessingConfig import ProcessingConfig
@@ -82,7 +83,7 @@ def defineCharacteristicsFromFile(self):
82
83
line = lines .readline ().strip ('\n ' ).strip ()
83
84
self .undecoratedGroup = line
84
85
self .group = SagaGroupNameDecorator .getDecoratedName (self .undecoratedGroup )
85
- self .i18n_name = QCoreApplication .translate ("SAGAAlgorithm" , self .group )
86
+ self .i18n_group = QCoreApplication .translate ("SAGAAlgorithm" , self .group )
86
87
line = lines .readline ().strip ('\n ' ).strip ()
87
88
while line != '' :
88
89
if line .startswith ('Hardcoded' ):
You can’t perform that action at this time.
0 commit comments