From 5a910a7623d5beacc43ca7ec1da9bf0fa08ef643 Mon Sep 17 00:00:00 2001 From: Chris Lumens Date: Tue, 22 Jul 2008 13:08:29 -0400 Subject: Support an abstract bug filing layer. Different products and distributions could support completely different bug filing system (or none at all, for that matter) so support an abstraction that allows us to use multiple kinds of bug files. We still need to commit that abstraction somewhere and also make sure we allow full customization through the product.img. --- installclass.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'installclass.py') diff --git a/installclass.py b/installclass.py index 0127e7130..029900535 100644 --- a/installclass.py +++ b/installclass.py @@ -32,6 +32,7 @@ from instdata import InstallData from autopart import getAutopartitionBoot, autoCreatePartitionRequests, autoCreateLVMPartitionRequests from constants import * +from filer import * import gettext _ = lambda x: gettext.ldgettext("anaconda", x) @@ -56,6 +57,8 @@ class BaseInstallClass(object): # default to showing the upgrade option showUpgrade = True + bugFiler = AbstractFiler() + # list of of (txt, grplist) tuples for task selection screen tasks = [] -- cgit