diff options
Diffstat (limited to 'src')
-rwxr-xr-x | src/sosreport | 4 |
1 files 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() |