summaryrefslogtreecommitdiffstats
path: root/fsset.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2002-04-22 16:26:36 +0000
committerJeremy Katz <katzj@redhat.com>2002-04-22 16:26:36 +0000
commit2627017d67c307ba4b05c66d412d052bfef5437a (patch)
treea77dc849a91a3568f114fa7710b310a5ee667352 /fsset.py
parent883cf725bc11e2c1d3a579040c03265670e9316f (diff)
downloadanaconda-2627017d67c307ba4b05c66d412d052bfef5437a.tar.gz
anaconda-2627017d67c307ba4b05c66d412d052bfef5437a.tar.xz
anaconda-2627017d67c307ba4b05c66d412d052bfef5437a.zip
fix a merge error
Diffstat (limited to 'fsset.py')
-rw-r--r--fsset.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/fsset.py b/fsset.py
index fbf037c33..be9bd4447 100644
--- a/fsset.py
+++ b/fsset.py
@@ -1332,8 +1332,9 @@ class FileSystemSetEntry:
self.origfsystem.mount(device, "%s/%s" % (chroot, self.mountpoint),
readOnly = readOnly)
else:
- self.fsystem.mount(device, "%s/%s" % (chroot, self.mountpoint,
- readOnly = readOnly)
+ self.fsystem.mount(device, "%s/%s" % (chroot, self.mountpoint),
+ readOnly = readOnly)
+
self.mountcount = self.mountcount + 1
def umount(self, chroot='/'):