From a59f2678e4a4cf530af3bbdd8c08cf2adda8adb1 Mon Sep 17 00:00:00 2001 From: David Cantrell Date: Wed, 25 Jul 2007 18:47:24 +0000 Subject: Was I the only one getting this error? rhel.py needed to import yuminstall. --- ChangeLog | 4 ++++ installclasses/rhel.py | 1 + 2 files changed, 5 insertions(+) diff --git a/ChangeLog b/ChangeLog index 4a88c6ac4..0be66f4b7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2007-07-25 David Cantrell + + * installclasses/rhel.py: import yuminstall to avoid traceback. + 2007-07-25 Jeremy Katz * 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: -- cgit