summaryrefslogtreecommitdiffstats
path: root/src/Gui/PluginList.py
diff options
context:
space:
mode:
authorJiri Moskovcak <jmoskovc@redhat.com>2009-09-29 10:17:05 +0200
committerJiri Moskovcak <jmoskovc@redhat.com>2009-09-29 10:17:05 +0200
commitd5bdbc372f3d6708df787d2f4d26bbd2134f2926 (patch)
treee7a02280abc93837135a89b803b4a1aa583927ba /src/Gui/PluginList.py
parent8dd31065ff6967bc88eea3060a782232f6481026 (diff)
GUI: send the reporters settings as an argument for Report()
- daemon shouldn't read from $HOME dir, as it is unsecure and won't work on NFS mounted homes.
Diffstat (limited to 'src/Gui/PluginList.py')
-rw-r--r--src/Gui/PluginList.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/Gui/PluginList.py b/src/Gui/PluginList.py
index 005bffee..431a5f62 100644
--- a/src/Gui/PluginList.py
+++ b/src/Gui/PluginList.py
@@ -46,6 +46,9 @@ class PluginInfoList(list):
def getAnalyzerPlugins(self):
return [x for x in self if x["Enabled"] == 'yes' and x["Type"] == 'Analyzer']
+
+ def getReporterPlugins(self):
+ return [x for x in self if x["Enabled"] == 'yes' and x["Type"] == 'Reporter']