diff options
author | Paul Nasrat <pnasrat@redhat.com> | 2006-07-21 18:45:10 +0000 |
---|---|---|
committer | Paul Nasrat <pnasrat@redhat.com> | 2006-07-21 18:45:10 +0000 |
commit | 343b276af5449958b409ad6b4a16cb7bd77c164b (patch) | |
tree | 4bf2f1d9d863fc0aa8fd429a3c063c12020dee1a /bootloader.py | |
parent | 4fc581935a20a03f4bb00d3f2e238d69c2ffa30b (diff) | |
download | anaconda-343b276af5449958b409ad6b4a16cb7bd77c164b.tar.gz anaconda-343b276af5449958b409ad6b4a16cb7bd77c164b.tar.xz anaconda-343b276af5449958b409ad6b4a16cb7bd77c164b.zip |
Fix traceback
Diffstat (limited to 'bootloader.py')
-rw-r--r-- | bootloader.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bootloader.py b/bootloader.py index 41934f121..ba25dcf9c 100644 --- a/bootloader.py +++ b/bootloader.py @@ -208,7 +208,7 @@ def getBootloader(): def hasWindows(bl): foundWindows = False for (k,v) in bl.images.getImages().iteritems(): - if v[0].lower() == 'other' and v[2] in dosFilesystems: + if v[0].lower() == 'other' and v[2] in bootloaderInfo.dosFilesystems: foundWindows = True break |