summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Cantrell <dcantrell@redhat.com>2007-07-25 18:47:24 +0000
committerDavid Cantrell <dcantrell@redhat.com>2007-07-25 18:47:24 +0000
commita59f2678e4a4cf530af3bbdd8c08cf2adda8adb1 (patch)
tree17d1765ca0f3fec7828bded02ef2b9a72e60559b
parentfce91732d2c7e477af506959f44062bf8501a3cb (diff)
downloadanaconda-a59f2678e4a4cf530af3bbdd8c08cf2adda8adb1.tar.gz
anaconda-a59f2678e4a4cf530af3bbdd8c08cf2adda8adb1.tar.xz
anaconda-a59f2678e4a4cf530af3bbdd8c08cf2adda8adb1.zip
Was I the only one getting this error? rhel.py needed to import yuminstall.
-rw-r--r--ChangeLog4
-rw-r--r--installclasses/rhel.py1
2 files changed, 5 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 4a88c6ac4..0be66f4b7 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2007-07-25 David Cantrell <dcantrell@redhat.com>
+
+ * installclasses/rhel.py: import yuminstall to avoid traceback.
+
2007-07-25 Jeremy Katz <katzj@redhat.com>
* isys/isys.py (makeDevInode): Warn if we try to explicitly create
diff --git a/installclasses/rhel.py b/installclasses/rhel.py
index d9be5c859..b6e8cda8f 100644
--- a/installclasses/rhel.py
+++ b/installclasses/rhel.py
@@ -6,6 +6,7 @@ from flags import flags
import os
import iutil
import types
+import yuminstall
try:
import instnum
except ImportError: