summaryrefslogtreecommitdiffstats
path: root/harddrive.py
diff options
context:
space:
mode:
authorPaul Nasrat <pnasrat@redhat.com>2005-11-15 02:12:31 +0000
committerPaul Nasrat <pnasrat@redhat.com>2005-11-15 02:12:31 +0000
commitde8d7567dc58490d8783d628ac0b0c4cc1c0be55 (patch)
tree723487d98f5cf99ae724ab5b25083ea95fe875c5 /harddrive.py
parentbdf99f678b8676f6ef87094323bbdd41329335f1 (diff)
downloadanaconda-de8d7567dc58490d8783d628ac0b0c4cc1c0be55.tar.gz
anaconda-de8d7567dc58490d8783d628ac0b0c4cc1c0be55.tar.xz
anaconda-de8d7567dc58490d8783d628ac0b0c4cc1c0be55.zip
Clean up method stuff a little
Diffstat (limited to 'harddrive.py')
-rw-r--r--harddrive.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/harddrive.py b/harddrive.py
index 84e47bea7..ae8d41dc8 100644
--- a/harddrive.py
+++ b/harddrive.py
@@ -155,7 +155,9 @@ class HardDriveInstallMethod(InstallMethod):
return [self.device]
def __init__(self, method, rootPath, intf):
+ """@param method hd://device:fstype:/path"""
InstallMethod.__init__(self, method, rootPath, intf)
+ method = method[5:]
device = method[0:method.index(":")]
tmpmethod = method[method.index(":") + 1:]