From e64e6fffd695632e19f5e848045a6ae976eb8c68 Mon Sep 17 00:00:00 2001 From: Sergio Durigan Junior Date: Wed, 4 Feb 2015 22:17:28 -0500 Subject: [PATCH] Adding descrition to copygdbsum --- lib/gdbcommand.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/gdbcommand.py b/lib/gdbcommand.py index 32565c3..d4cdb9e 100644 --- a/lib/gdbcommand.py +++ b/lib/gdbcommand.py @@ -9,6 +9,8 @@ from shutil import copyfile class CopyOldGDBSumFile (ShellCommand): """Copy the current gdb.sum file into the old_gdb.sum file.""" name = "copy gdb.sum file" + description = "copying previous gdb.sum file" + descriptionDone = "copied previous gdb.sum file" command = [ 'true' ] def __init__ (self, **kwargs):