diff options
author | monsta <[email protected]> | 2016-12-19 15:14:41 +0300 |
---|---|---|
committer | monsta <[email protected]> | 2016-12-19 16:36:16 +0300 |
commit | 1c4f44ccb3e3edab847c17ef958e7fbe13e2fe90 (patch) | |
tree | 14352b364b6b253db88d5289930aaee9d830c124 /plugins/snippets | |
parent | 63e33e0047a77a37cfcfa2a66dfcdfc5f38c534c (diff) | |
download | pluma-1c4f44ccb3e3edab847c17ef958e7fbe13e2fe90.tar.bz2 pluma-1c4f44ccb3e3edab847c17ef958e7fbe13e2fe90.tar.xz |
snippets plugin: MESSAGE_INFORMATION doesn't exist, use MESSAGE_INFO
Diffstat (limited to 'plugins/snippets')
-rwxr-xr-x | plugins/snippets/snippets/Manager.py | 4 |
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'))) |