Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix #18066
  • Loading branch information
jef-n committed Feb 9, 2018
1 parent 603d2e6 commit 9302613
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/plugins/processing/gui/MessageBarProgress.py
Expand Up @@ -28,7 +28,7 @@
from qgis.PyQt.QtCore import Qt, QCoreApplication
from qgis.PyQt.QtWidgets import QProgressBar
from qgis.utils import iface
from qgis.core import QgsProcessingFeedback
from qgis.core import QgsProcessingFeedback, Qgis
from processing.gui.MessageDialog import MessageDialog


Expand All @@ -46,7 +46,7 @@ def __init__(self, algname=None):
self.progress.setAlignment(Qt.AlignLeft | Qt.AlignVCenter)
self.progressMessageBar.layout().addWidget(self.progress)
iface.messageBar().pushWidget(self.progressMessageBar,
iface.messageBar().INFO)
Qgis.Info)

def reportError(self, msg):
self.msg.append(msg)
Expand Down

0 comments on commit 9302613

Please sign in to comment.