diff options
author | Chris Lumens <clumens@redhat.com> | 2007-10-26 19:03:41 +0000 |
---|---|---|
committer | Chris Lumens <clumens@redhat.com> | 2007-10-26 19:03:41 +0000 |
commit | 0bbe1d6f487b4d87264ea7879ca36b1a35b878eb (patch) | |
tree | b6a3733e13edec4a8c4bd29734ba8b81602fe4e1 /anaconda_log.py | |
parent | 16baaf7a1246db5a317cee1b40c67f08f7378811 (diff) | |
download | anaconda-0bbe1d6f487b4d87264ea7879ca36b1a35b878eb.tar.gz anaconda-0bbe1d6f487b4d87264ea7879ca36b1a35b878eb.tar.xz anaconda-0bbe1d6f487b4d87264ea7879ca36b1a35b878eb.zip |
Fix typo.
Diffstat (limited to 'anaconda_log.py')
-rw-r--r-- | anaconda_log.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/anaconda_log.py b/anaconda_log.py index cd769cf5a..abdbcc26b 100644 --- a/anaconda_log.py +++ b/anaconda_log.py @@ -62,7 +62,7 @@ class AnacondaLog: # Add a handler for the duped stuff. No fancy formatting, thanks. self.addFileHandler (sys.stdout, self.stdoutLogger, - fmtStr="%(asctime) %(message)s", minLevel=logging.INFO) + fmtStr="%(asctime)s %(message)s", minLevel=logging.INFO) # Add a simple handler - file or stream, depending on what we're given. def addFileHandler (self, file, addToLogger, minLevel=DEFAULT_LEVEL, |