summaryrefslogtreecommitdiffstats
path: root/installclasses/rhel.py
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2009-07-15 14:44:16 -0400
committerChris Lumens <clumens@redhat.com>2009-07-29 15:25:02 -0400
commitd7c152741926e596147cddad3051dfbda19c8f10 (patch)
tree1fc5c77c27224142f461423fefe4385ca9a2c77c /installclasses/rhel.py
parentb2354c161be732ce3605e337bb852ccf5f55a678 (diff)
downloadanaconda-d7c152741926e596147cddad3051dfbda19c8f10.tar.gz
anaconda-d7c152741926e596147cddad3051dfbda19c8f10.tar.xz
anaconda-d7c152741926e596147cddad3051dfbda19c8f10.zip
BugzillaFiler.__init__ now requires a bugUrl, version, and product.
Diffstat (limited to 'installclasses/rhel.py')
-rw-r--r--installclasses/rhel.py6
1 files changed, 4 insertions, 2 deletions
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)