Skip to content

Commit 3836cd3

Browse files
committedFeb 16, 2018
followup 6dfedc3, fix processing tests
1 parent a6a36ac commit 3836cd3

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed
 

‎python/plugins/processing/algs/qgis/ServiceAreaFromLayer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ def processAlgorithm(self, parameters, context, feedback):
211211
True,
212212
tolerance)
213213

214-
feedback.pushInfo(Q('Loading start points…'))
214+
feedback.pushInfo(QCoreApplication.translate('ServiceAreaFromLayer', 'Loading start points…'))
215215
request = QgsFeatureRequest()
216216
request.setDestinationCrs(network.sourceCrs(), context.transformContext())
217217
features = startPoints.getFeatures(request)

‎python/plugins/processing/algs/qgis/ServiceAreaFromPoint.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
import os
2929
from collections import OrderedDict
3030

31-
from qgis.PyQt.QtCore import QVariant
31+
from qgis.PyQt.QtCore import QVariant, QCoreApplication
3232
from qgis.PyQt.QtGui import QIcon
3333

3434
from qgis.core import (QgsWkbTypes,

‎python/plugins/processing/algs/qgis/ShortestPathPointToLayer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
import os
2929
from collections import OrderedDict
3030

31-
from qgis.PyQt.QtCore import QVariant
31+
from qgis.PyQt.QtCore import QVariant, QCoreApplication
3232
from qgis.PyQt.QtGui import QIcon
3333

3434
from qgis.core import (NULL,

‎python/plugins/processing/algs/qgis/ShortestPathPointToPoint.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
import os
2929
from collections import OrderedDict
3030

31-
from qgis.PyQt.QtCore import QVariant
31+
from qgis.PyQt.QtCore import QVariant, QCoreApplication
3232
from qgis.PyQt.QtGui import QIcon
3333

3434
from qgis.core import (QgsWkbTypes,

0 commit comments

Comments
 (0)
Please sign in to comment.