diff options
author | Jeremy Katz <katzj@redhat.com> | 2002-04-22 16:26:36 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2002-04-22 16:26:36 +0000 |
commit | 2627017d67c307ba4b05c66d412d052bfef5437a (patch) | |
tree | a77dc849a91a3568f114fa7710b310a5ee667352 /fsset.py | |
parent | 883cf725bc11e2c1d3a579040c03265670e9316f (diff) | |
download | anaconda-2627017d67c307ba4b05c66d412d052bfef5437a.tar.gz anaconda-2627017d67c307ba4b05c66d412d052bfef5437a.tar.xz anaconda-2627017d67c307ba4b05c66d412d052bfef5437a.zip |
fix a merge error
Diffstat (limited to 'fsset.py')
-rw-r--r-- | fsset.py | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -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='/'): |