diff options
author | Erik Troan <ewt@redhat.com> | 2000-08-10 14:49:18 +0000 |
---|---|---|
committer | Erik Troan <ewt@redhat.com> | 2000-08-10 14:49:18 +0000 |
commit | 53dd236f0060e2644e106797a91db4f0f206188e (patch) | |
tree | f2ffcabd959ee58ec6d11958b17f6942e5b903bb /image.py | |
parent | 58d55d42d4b01fe0e1093d12e76b9511f371c80e (diff) | |
download | anaconda-53dd236f0060e2644e106797a91db4f0f206188e.tar.gz anaconda-53dd236f0060e2644e106797a91db4f0f206188e.tar.xz anaconda-53dd236f0060e2644e106797a91db4f0f206188e.zip |
insert topmountdir into path when checking free space
Diffstat (limited to 'image.py')
-rw-r--r-- | image.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -43,7 +43,7 @@ class CdromInstallMethod(ImageInstallMethod): if changeloop == 0: return - self.loopbackFile = mntPoint + fstab.filesystemSpace()[0][0] + \ + self.loopbackFile = mntPoint + fstab.filesystemSpace(mntPoint)[0][0] + \ "/rhinstall-stage2.img" try: |