diff options
author | David Cantrell <dcantrell@redhat.com> | 2007-07-25 18:47:24 +0000 |
---|---|---|
committer | David Cantrell <dcantrell@redhat.com> | 2007-07-25 18:47:24 +0000 |
commit | a59f2678e4a4cf530af3bbdd8c08cf2adda8adb1 (patch) | |
tree | 17d1765ca0f3fec7828bded02ef2b9a72e60559b | |
parent | fce91732d2c7e477af506959f44062bf8501a3cb (diff) | |
download | anaconda-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-- | ChangeLog | 4 | ||||
-rw-r--r-- | installclasses/rhel.py | 1 |
2 files changed, 5 insertions, 0 deletions
@@ -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: |