diff options
author | Jeremy Katz <katzj@redhat.com> | 2007-09-19 15:42:55 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2007-09-19 15:42:55 +0000 |
commit | 481c96f7025eaa99eec896b88e5892544afd5245 (patch) | |
tree | 4d25c481e049ae5a227a160008c1073696726c67 /livecd.py | |
parent | 90985c5cf5fd151875fb6ce5015bbb4fc2013f09 (diff) | |
download | anaconda-481c96f7025eaa99eec896b88e5892544afd5245.tar.gz anaconda-481c96f7025eaa99eec896b88e5892544afd5245.tar.xz anaconda-481c96f7025eaa99eec896b88e5892544afd5245.zip |
2007-09-19 Jeremy Katz <katzj@redhat.com>
* livecd.py (LiveCDImageMethod.unmountNonFstabDirs): Fix syntax error.
* liveinst/liveinst.sh: Fix path.
Diffstat (limited to 'livecd.py')
-rw-r--r-- | livecd.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -103,7 +103,7 @@ class LiveCDImageMethod(installmethod.InstallMethod): dirs = ["/dev"] if flags.selinux: dirs.append("/selinux") - for dir in dirs + for dir in dirs: try: isys.umount("%s/%s" %(anaconda.rootPath,dir), removeDir = 0) except Exception, e: |