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. --- installclass.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'installclass.py') diff --git a/installclass.py b/installclass.py index d0f535d6f..c16cb0480 100644 --- a/installclass.py +++ b/installclass.py @@ -31,7 +31,8 @@ import types from instdata import InstallData from constants import * -from filer import * +from meh.filer import * +from product import * from storage.partspec import * import gettext @@ -56,7 +57,8 @@ class BaseInstallClass(object): # default to showing the upgrade option showUpgrade = True - bugFiler = AbstractFiler() + bugFiler = AbstractFiler(product.bugUrl, product.bugUrl, + product.productVersion, product.productName) # list of of (txt, grplist) tuples for task selection screen tasks = [] -- cgit