summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormonsta <[email protected]>2016-12-19 15:14:41 +0300
committermonsta <[email protected]>2017-02-28 17:13:18 +0300
commit30a41c8e0c639f6c4be8b3b8fa52a00b8b84236d (patch)
tree565a5c6cd4909af3fb17caf150f9be8506a6f433
parent3b5ffc2bcedc6ae4fc5c5fb65c7db445d8f59dc4 (diff)
downloadpluma-30a41c8e0c639f6c4be8b3b8fa52a00b8b84236d.tar.bz2
pluma-30a41c8e0c639f6c4be8b3b8fa52a00b8b84236d.tar.xz
snippets plugin: MESSAGE_INFORMATION doesn't exist, use MESSAGE_INFO
-rwxr-xr-xplugins/snippets/snippets/Manager.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/snippets/snippets/Manager.py b/plugins/snippets/snippets/Manager.py
index 96220c6e..4c58a3b3 100755
--- a/plugins/snippets/snippets/Manager.py
+++ b/plugins/snippets/snippets/Manager.py
@@ -878,7 +878,7 @@ class Manager:
if len(export_snippets) == 0 and show_dialogs:
message = _('There are no snippets selected to be exported')
- message_dialog(self.dlg, gtk.MESSAGE_INFORMATION, message)
+ message_dialog(self.dlg, gtk.MESSAGE_INFO, message)
return False
if not filename:
@@ -948,7 +948,7 @@ class Manager:
dlg.destroy()
message = _('There are no snippets selected to be exported')
- message_dialog(self.dlg, gtk.MESSAGE_INFORMATION, message)
+ message_dialog(self.dlg, gtk.MESSAGE_INFO, message)
return
dlg.add_filter(self.file_filter(_('All supported archives'), ('*.gz','*.bz2','*.tar')))