fix uninitialized self.inum in rhel.py:repoIsAllowed() (#703253).
Related commit: 6ce4c9b6
---
installclasses/rhel.py | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/installclasses/rhel.py b/installclasses/rhel.py
index e671a8a..27e3a55 100644
--- a/installclasses/rhel.py
+++ b/installclasses/rhel.py
@@ -176,6 +176,7 @@ class InstallClass(BaseInstallClass):
def __init__(self, expert):
BaseInstallClass.__init__(self, expert)
+ self.inum = None
self.repopaths = { "base": "%s" %(productPath,) }
# minimally set up tasks in case no key is provided
--
1.7.3.3
_______________________________________________
Anaconda-devel-list mailing list
Anaconda-devel-list@redhat.com
https://www.redhat.com/mailman/listinfo/anaconda-devel-list
|