diff options
author | shnavid <shnavid@ef72aa8b-4018-0410-8976-d6e080ef94d8> | 2007-02-16 15:31:17 +0000 |
---|---|---|
committer | shnavid <shnavid@ef72aa8b-4018-0410-8976-d6e080ef94d8> | 2007-02-16 15:31:17 +0000 |
commit | ea3d5082dc01a09dea940356dac54e4ff2309b7e (patch) | |
tree | dbc3aab7bac76ce2893f0366856c61a334e64442 | |
parent | 66df1fc5d25ad797b320696be2d02f3a1c579272 (diff) | |
download | sos-ea3d5082dc01a09dea940356dac54e4ff2309b7e.tar.gz |
Fixed another unterminated string.
git-svn-id: svn+ssh://svn.fedorahosted.org/svn/sos/trunk@76 ef72aa8b-4018-0410-8976-d6e080ef94d8
-rwxr-xr-x | src/sosreport | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sosreport b/src/sosreport index 167bb445..45625ea9 100755 --- a/src/sosreport +++ b/src/sosreport @@ -54,7 +54,7 @@ def doExitCode(): ## FIXME: Add thread-kill code (see FIXME below) print "Threads dead, cleaning up." if ( ( activeCount() == 1 ) and ( __breakHits__ > 2 ) ): - print "Multiple SIGTERMs, single thread, exiting without cleaning up. + print "Multiple SIGTERMs, single thread, exiting without cleaning up." sys.exit(3) # FIXME: Add code here to clean up /tmp sys.exit(255) |