From 2c8c422ef09b253b2cd7c2cc9fde9dda76cd3bb2 Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Tue, 18 Aug 2009 13:15:23 +0200 Subject: whitespace cleanup, no code changes Signed-off-by: Denys Vlasenko --- src/Gui/ABRTPlugin.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'src/Gui/ABRTPlugin.py') diff --git a/src/Gui/ABRTPlugin.py b/src/Gui/ABRTPlugin.py index dc95956..ce802c2 100644 --- a/src/Gui/ABRTPlugin.py +++ b/src/Gui/ABRTPlugin.py @@ -23,8 +23,8 @@ class PluginSettings(dict): """Class to represent common plugin info""" class PluginInfo(): - keys = ["WWW", "Name", "Enabled", - "GTKBuilder", "Version", + keys = ["WWW", "Name", "Enabled", + "GTKBuilder", "Version", "Type", "Email", "Description"] def __init__(self): @@ -38,16 +38,16 @@ class PluginInfo(): self.Email = None self.Description = None self.Settings = None - + def getName(self): return self.Name - + def getDescription(self): return self.Description - + def getGUI(self): return self.GTKBuilder - + def __str__(self): return self.Name - + -- cgit