diff options
| author | Denys Vlasenko <vda.linux@googlemail.com> | 2009-08-18 13:15:23 +0200 |
|---|---|---|
| committer | Denys Vlasenko <vda.linux@googlemail.com> | 2009-08-18 13:15:23 +0200 |
| commit | 2c8c422ef09b253b2cd7c2cc9fde9dda76cd3bb2 (patch) | |
| tree | a4b965e5acc5bd424b3f0cca2f697d861e31b24d /src/Gui/CCDump.py | |
| parent | 20eb553c3ac2187e8347f093f6ba480ceb85627b (diff) | |
| download | abrt-2c8c422ef09b253b2cd7c2cc9fde9dda76cd3bb2.tar.gz abrt-2c8c422ef09b253b2cd7c2cc9fde9dda76cd3bb2.tar.xz abrt-2c8c422ef09b253b2cd7c2cc9fde9dda76cd3bb2.zip | |
whitespace cleanup, no code changes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'src/Gui/CCDump.py')
| -rw-r--r-- | src/Gui/CCDump.py | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/Gui/CCDump.py b/src/Gui/CCDump.py index 0ea106f..feb294a 100644 --- a/src/Gui/CCDump.py +++ b/src/Gui/CCDump.py @@ -16,25 +16,25 @@ class Dump(): self.Time = None self.Description = None self.Reported = None - + def getUUID(self): return self.UUID[CONTENT] - + def getUID(self): return self.UID[CONTENT] - + def getCount(self): return self.Count[CONTENT] - + def getExecutable(self): return self.Executable[CONTENT] - + def getPackage(self): return self.Package[CONTENT] - + def isReported(self): return self.Reported[CONTENT] == "1" - + def getTime(self,format): #print format if format: @@ -43,9 +43,9 @@ class Dump(): except Exception, e: print e return int(self.Time[CONTENT]) - + def getPackageName(self): return self.Package[CONTENT][:self.Package[CONTENT].find("-")] - + def getDescription(self): return self.Description[CONTENT] |
