summaryrefslogtreecommitdiffstats
path: root/src/gui
diff options
context:
space:
mode:
authorDenys Vlasenko <dvlasenk@redhat.com>2010-11-11 14:14:30 +0100
committerDenys Vlasenko <dvlasenk@redhat.com>2010-11-11 14:14:30 +0100
commit3e50bc1750fa3ccd98a7bc79c3904ae937eb157d (patch)
treedf700ac4b861180879c8cabf743d29fc46090f8d /src/gui
parente74cbbed77d3bb44b68c803633427da7225f3523 (diff)
downloadabrt-3e50bc1750fa3ccd98a7bc79c3904ae937eb157d.tar.gz
abrt-3e50bc1750fa3ccd98a7bc79c3904ae937eb157d.tar.xz
abrt-3e50bc1750fa3ccd98a7bc79c3904ae937eb157d.zip
remove "old" Bugzilla and RHTSupport plugins
Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
Diffstat (limited to 'src/gui')
-rw-r--r--src/gui/ConfBackend.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/gui/ConfBackend.py b/src/gui/ConfBackend.py
index ca362a6b..36c15ff2 100644
--- a/src/gui/ConfBackend.py
+++ b/src/gui/ConfBackend.py
@@ -93,9 +93,9 @@ class ConfBackendGnomeKeyring(ConfBackend):
try:
item_list = gkey.find_items_sync(gkey.ITEM_GENERIC_SECRET, { "AbrtPluginInfo": str(name) })
for item in item_list:
- log2("found old keyring item: ring:'%s' item_id:%s attrs:%s", item.keyring, item.item_id, str(item.attributes))
- log2("deleting it from keyring '%s'", g_default_key_ring)
- gkey.item_delete_sync(g_default_key_ring, item.item_id)
+ log2("found old keyring item: ring:'%s' item_id:%s attrs:%s", item.keyring, item.item_id, str(item.attributes))
+ log2("deleting it from keyring '%s'", g_default_key_ring)
+ gkey.item_delete_sync(g_default_key_ring, item.item_id)
except gkey.NoMatchError:
# nothing found
pass
@@ -115,6 +115,7 @@ class ConfBackendGnomeKeyring(ConfBackend):
settings_tmp, # attrs
password, # secret
True)
+ log2("saved new keyring item:%s", str(settings_tmp))
except gkey.DeniedError:
raise ConfBackendSaveError(_("Access to gnome-keyring has been denied, plugins settings will not be saved."))