summaryrefslogtreecommitdiffstats
path: root/backend.py
diff options
context:
space:
mode:
authorPaul Nasrat <pnasrat@redhat.com>2005-11-15 01:46:54 +0000
committerPaul Nasrat <pnasrat@redhat.com>2005-11-15 01:46:54 +0000
commitbdf99f678b8676f6ef87094323bbdd41329335f1 (patch)
tree2a4986aeff610b9337c1f793848301e3621b6c47 /backend.py
parent5742b733870f35ffd5a2f550af069b267e0dcd15 (diff)
downloadanaconda-bdf99f678b8676f6ef87094323bbdd41329335f1.tar.gz
anaconda-bdf99f678b8676f6ef87094323bbdd41329335f1.tar.xz
anaconda-bdf99f678b8676f6ef87094323bbdd41329335f1.zip
Use method not methodstr
Diffstat (limited to 'backend.py')
-rw-r--r--backend.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/backend.py b/backend.py
index 178c23c57..1f8113765 100644
--- a/backend.py
+++ b/backend.py
@@ -26,14 +26,12 @@ log = logging.getLogger("anaconda")
class AnacondaBackend:
- def __init__(self, methodstr, method, instPath):
+ def __init__(self, method, instPath):
"""Abstract backend class all backends should inherit from this
- @param method: method uri string eg nfs://
- @param methodstr: method uri string eg nfs://
+ @param method: Object of InstallMethod type
@param instPath: root path for the installation to occur"""
self.method = method
- self.methodstr = methodstr
self.instPath = instPath
self.instLog = None
self.modeText = ""