summaryrefslogtreecommitdiffstats
path: root/anaconda_log.py
diff options
context:
space:
mode:
authorMike Fulbright <msf@redhat.com>2002-05-23 16:34:38 +0000
committerMike Fulbright <msf@redhat.com>2002-05-23 16:34:38 +0000
commit9828fc34cf4402bfad440123477dd5b8334b626d (patch)
tree49731f6dccca7095cf588fcc856c10809e44cae6 /anaconda_log.py
parent379f7b93c9708f99d4cc50291426f00beb27a465 (diff)
downloadanaconda-9828fc34cf4402bfad440123477dd5b8334b626d.tar.gz
anaconda-9828fc34cf4402bfad440123477dd5b8334b626d.tar.xz
anaconda-9828fc34cf4402bfad440123477dd5b8334b626d.zip
migrate to using rhpl log function
Diffstat (limited to 'anaconda_log.py')
-rw-r--r--anaconda_log.py9
1 files changed, 5 insertions, 4 deletions
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 <msw@redhat.com>
+# Michael Fulbright <msf@redhat.com>
#
-# 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()