summaryrefslogtreecommitdiffstats
path: root/harddrive.py
diff options
context:
space:
mode:
authorErik Troan <ewt@redhat.com>2001-03-09 01:59:04 +0000
committerErik Troan <ewt@redhat.com>2001-03-09 01:59:04 +0000
commit06eff25db5d0ba6aa39e9a5966e822a758940e9c (patch)
tree902a3f8e54d56ee74b038b89943dd55dfb2bf8fd /harddrive.py
parent8073538c0b99d7735393f5ab1d690debc441d318 (diff)
downloadanaconda-06eff25db5d0ba6aa39e9a5966e822a758940e9c.tar.gz
anaconda-06eff25db5d0ba6aa39e9a5966e822a758940e9c.tar.xz
anaconda-06eff25db5d0ba6aa39e9a5966e822a758940e9c.zip
changed readonly to readOnly in some parameters for consistency
Diffstat (limited to 'harddrive.py')
-rw-r--r--harddrive.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/harddrive.py b/harddrive.py
index 6de1d1f91..78d4433d6 100644
--- a/harddrive.py
+++ b/harddrive.py
@@ -105,7 +105,7 @@ class HardDriveInstallMethod(InstallMethod):
isoImage = self.isoDir + '/' + self.path + '/' + self.discImages[cdNum]
isys.makeDevInode("loop2", "/tmp/loop2")
- isys.losetup("/tmp/loop2", isoImage, readonly = 1)
+ isys.losetup("/tmp/loop2", isoImage, readOnly = 1)
isys.mount("loop2", "/tmp/hdimage", fstype = 'iso9660', readOnly = 1);
self.tree = "/tmp/hdimage/"
@@ -218,7 +218,7 @@ class HardDriveInstallMethod(InstallMethod):
isys.makeDevInode("loop2", "/tmp/loop2")
try:
- isys.losetup("/tmp/loop2", what, readonly = 1)
+ isys.losetup("/tmp/loop2", what, readOnly = 1)
except SystemError:
continue