From d7c152741926e596147cddad3051dfbda19c8f10 Mon Sep 17 00:00:00 2001 From: Chris Lumens Date: Wed, 15 Jul 2009 14:44:16 -0400 Subject: BugzillaFiler.__init__ now requires a bugUrl, version, and product. --- installclasses/rhel.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'installclasses/rhel.py') diff --git a/installclasses/rhel.py b/installclasses/rhel.py index 5906c8e11..0cb291fb9 100644 --- a/installclasses/rhel.py +++ b/installclasses/rhel.py @@ -20,7 +20,7 @@ from installclass import BaseInstallClass from constants import * from product import * -from filer import * +from meh.filer import * from flags import flags import os import iutil @@ -79,7 +79,9 @@ class InstallClass(BaseInstallClass): skipkeytext = N_("If you cannot locate the Installation Number, consult " "http://www.redhat.com/InstNum/") - bugFiler = BugzillaFiler(bugUrl="https://bugzilla.redhat.com/xmlrpc.cgi") + bugFiler = BugzillaFiler("https://bugzilla.redhat.com/xmlrpc.cgi", + "https://bugzilla.redhat.com/", + product.productVersion, product.productName) def setInstallData(self, anaconda): BaseInstallClass.setInstallData(self, anaconda) -- cgit