From 9828fc34cf4402bfad440123477dd5b8334b626d Mon Sep 17 00:00:00 2001 From: Mike Fulbright Date: Thu, 23 May 2002 16:34:38 +0000 Subject: migrate to using rhpl log function --- anaconda_log.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'anaconda_log.py') diff --git a/anaconda_log.py b/anaconda_log.py index 9aa165fdc..f0a5424d0 100644 --- a/anaconda_log.py +++ b/anaconda_log.py @@ -2,8 +2,9 @@ # log.py - persistent debugging log service # # Matt Wilson +# Michael Fulbright # -# Copyright 2000-2001 Red Hat, Inc. +# Copyright 2000-2002 Red Hat, Inc. # # This software may be freely redistributed under the terms of the GNU # library public license. @@ -15,11 +16,11 @@ import sys -class LogFile: +class Anaconda_LogFile: def __init__ (self): self.logFile = None self.logFile2 = None - + def close (self): try: self.logFile.close () @@ -61,4 +62,4 @@ class LogFile: def getFile (self): return self.logFile.fileno () -log = LogFile() +anaconda_log = Anaconda_LogFile() -- cgit