diff options
author | shnavid <shnavid@ef72aa8b-4018-0410-8976-d6e080ef94d8> | 2007-02-16 15:29:39 +0000 |
---|---|---|
committer | shnavid <shnavid@ef72aa8b-4018-0410-8976-d6e080ef94d8> | 2007-02-16 15:29:39 +0000 |
commit | 66df1fc5d25ad797b320696be2d02f3a1c579272 (patch) | |
tree | 25f190c9b96e500ef1ee027adcac442bdc199f95 /src | |
parent | fdbc9c022642726d3eb1ecc4d791854f4737e247 (diff) | |
download | sos-66df1fc5d25ad797b320696be2d02f3a1c579272.tar.gz |
Fixed a small typo (unterminated string).
git-svn-id: svn+ssh://svn.fedorahosted.org/svn/sos/trunk@75 ef72aa8b-4018-0410-8976-d6e080ef94d8
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() |