Skip to content

Commit

Permalink
[processing] fixed wrong import in parameters classç
Browse files Browse the repository at this point in the history
Fixes #11393
  • Loading branch information
volaya committed Oct 12, 2014
1 parent 57a783e commit d1f84fd
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions python/plugins/processing/core/parameters.py
Expand Up @@ -27,10 +27,8 @@
__revision__ = '$Format:%H$'

import sys

from PyQt4.QtCore import *
from qgis.core import *

from processing.tools.system import *
from processing.tools import dataobjects

Expand Down Expand Up @@ -96,7 +94,7 @@ def todict(self):
def tr(self, string, context=''):
if context == '':
context = 'Parameter'
return QtCore.QCoreApplication.translate(context, string)
return QCoreApplication.translate(context, string)


class ParameterBoolean(Parameter):
Expand Down

0 comments on commit d1f84fd

Please sign in to comment.