summaryrefslogtreecommitdiffstats
path: root/installclasses
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2010-02-19 11:32:20 -0500
committerChris Lumens <clumens@redhat.com>2010-03-04 11:16:05 -0500
commit924290458fc6376a28c8f794e51e0adb31226ed9 (patch)
treeb74f5fe4e64cd12e9754246491d365bed060ca71 /installclasses
parentae492597210b97a1fb7ca53b48c79214d9a25fe6 (diff)
downloadanaconda-924290458fc6376a28c8f794e51e0adb31226ed9.tar.gz
anaconda-924290458fc6376a28c8f794e51e0adb31226ed9.tar.xz
anaconda-924290458fc6376a28c8f794e51e0adb31226ed9.zip
report handles exn saving now, and doesn't require a Filer (#562656).
Diffstat (limited to 'installclasses')
-rw-r--r--installclasses/fedora.py5
-rw-r--r--installclasses/rhel.py5
2 files changed, 0 insertions, 10 deletions
diff --git a/installclasses/fedora.py b/installclasses/fedora.py
index 1c058391e..189aa2ab2 100644
--- a/installclasses/fedora.py
+++ b/installclasses/fedora.py
@@ -20,7 +20,6 @@
from installclass import BaseInstallClass
from constants import *
from product import *
-from meh.filer import *
from flags import flags
import os, types
import iutil
@@ -63,10 +62,6 @@ class InstallClass(BaseInstallClass):
"java", "text-internet", "web-server"]),
(N_("Minimal"), ["core"])]
- bugFiler = BugzillaFiler("https://bugzilla.redhat.com/xmlrpc.cgi",
- "https://bugzilla.redhat.com/",
- product.productVersion, product.productName)
-
def getPackagePaths(self, uri):
if not type(uri) == types.ListType:
uri = [uri,]
diff --git a/installclasses/rhel.py b/installclasses/rhel.py
index b78c145be..5572298b3 100644
--- a/installclasses/rhel.py
+++ b/installclasses/rhel.py
@@ -20,7 +20,6 @@
from installclass import BaseInstallClass
from constants import *
from product import *
-from meh.filer import *
from flags import flags
import os
import types
@@ -86,10 +85,6 @@ class InstallClass(BaseInstallClass):
"network-server", "nfs-file-server", "print-server",
"system-admin-tools"])]
- bugFiler = BugzillaFiler("https://bugzilla.redhat.com/xmlrpc.cgi",
- "https://bugzilla.redhat.com/",
- product.productVersion, product.productName)
-
def getPackagePaths(self, uri):
if not type(uri) == types.ListType:
uri = [uri,]