Skip to content

Commit f8f7842

Browse files
committedDec 3, 2014
db_manager: fix error message on table vacuum
1 parent e4c9a20 commit f8f7842

File tree

1 file changed

+1
-1
lines changed
  • python/plugins/db_manager/db_plugins/postgis

1 file changed

+1
-1
lines changed
 

‎python/plugins/db_manager/db_plugins/postgis/plugin.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ def runVacuumAnalyzeActionSlot(self, item, action, parent):
169169
QApplication.restoreOverrideCursor()
170170
try:
171171
if not isinstance(item, Table) or item.isView:
172-
parent.infoBar().pushMessage(self.tr("Select a table for vacuum analyze."), QgsMessageBar.INFO, parent.iface.messageTimeout())
172+
parent.infoBar.pushMessage(self.tr("Select a table for vacuum analyze."), QgsMessageBar.INFO, parent.iface.messageTimeout())
173173
return
174174
finally:
175175
QApplication.setOverrideCursor(Qt.WaitCursor)

0 commit comments

Comments
 (0)
Please sign in to comment.