From 66df1fc5d25ad797b320696be2d02f3a1c579272 Mon Sep 17 00:00:00 2001 From: shnavid Date: Fri, 16 Feb 2007 15:29:39 +0000 Subject: Fixed a small typo (unterminated string). git-svn-id: svn+ssh://svn.fedorahosted.org/svn/sos/trunk@75 ef72aa8b-4018-0410-8976-d6e080ef94d8 --- src/sosreport | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/sosreport b/src/sosreport index 278d1d00..167bb445 100755 --- a/src/sosreport +++ b/src/sosreport @@ -52,7 +52,7 @@ def doExitCode(): if ( ( activeCount() > 1 ) and ( __breakHits__ > 1 ) ): print "Multiple SIGTERMs, multiple threads, attempting to signal threads to die immediately" ## FIXME: Add thread-kill code (see FIXME below) - print "Threads dead, cleaning up. + print "Threads dead, cleaning up." if ( ( activeCount() == 1 ) and ( __breakHits__ > 2 ) ): print "Multiple SIGTERMs, single thread, exiting without cleaning up. sys.exit(3) @@ -365,4 +365,4 @@ if __name__ == '__main__': try: sosreport() except KeyboardInterrupt: - doExitCode() \ No newline at end of file + doExitCode() -- cgit