summaryrefslogtreecommitdiffstats
path: root/image.py
diff options
context:
space:
mode:
authorMike Fulbright <msf@redhat.com>2002-05-23 15:21:26 +0000
committerMike Fulbright <msf@redhat.com>2002-05-23 15:21:26 +0000
commitd7505f5e013cfa2b0af3eff08111c846f5930397 (patch)
treee38fd6d8e6f8bab5ef2d191fdde2d31f43707fbf /image.py
parent4bdbb8966ae3997688ad2668b2eed934bf8ed770 (diff)
downloadanaconda-d7505f5e013cfa2b0af3eff08111c846f5930397.tar.gz
anaconda-d7505f5e013cfa2b0af3eff08111c846f5930397.tar.xz
anaconda-d7505f5e013cfa2b0af3eff08111c846f5930397.zip
1) Fix all copyrights 2) move everything to use rhpl.translate instead of our own translate.py
Diffstat (limited to 'image.py')
-rw-r--r--image.py15
1 files changed, 13 insertions, 2 deletions
diff --git a/image.py b/image.py
index 8bf43b757..53b645ea8 100644
--- a/image.py
+++ b/image.py
@@ -1,4 +1,15 @@
-# Install method for disk image installs (CD & NFS)
+#
+# image.py - Install method for disk image installs (CD & NFS)
+#
+# Copyright 1999-2002 Red Hat, Inc.
+#
+# This software may be freely redistributed under the terms of the GNU
+# library public license.
+#
+# You should have received a copy of the GNU Library Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+#
from comps import ComponentSet, HeaderListFromFile
from installmethod import InstallMethod
@@ -8,7 +19,7 @@ import isys
import time
import kudzu
import string
-from translate import _
+from rhpl.translate import _
from log import log
class ImageInstallMethod(InstallMethod):