aboutsummaryrefslogtreecommitdiffstats
path: root/src/sosreport
diff options
context:
space:
mode:
authorshnavid <shnavid@ef72aa8b-4018-0410-8976-d6e080ef94d8>2007-02-16 15:29:39 +0000
committershnavid <shnavid@ef72aa8b-4018-0410-8976-d6e080ef94d8>2007-02-16 15:29:39 +0000
commit66df1fc5d25ad797b320696be2d02f3a1c579272 (patch)
tree25f190c9b96e500ef1ee027adcac442bdc199f95 /src/sosreport
parentfdbc9c022642726d3eb1ecc4d791854f4737e247 (diff)
downloadsos-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/sosreport')
-rwxr-xr-xsrc/sosreport4
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()