summaryrefslogtreecommitdiffstats
path: root/floppy.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2003-01-03 22:43:16 +0000
committerJeremy Katz <katzj@redhat.com>2003-01-03 22:43:16 +0000
commit9b910ce0ecbd25c242f5a1b8e439296f03d7e83c (patch)
tree89e2feb5ff9d022ca59b8727cd25d1e456e5d2fe /floppy.py
parent0e1dc420920cccb57714c698bed58b4c27ae7f94 (diff)
downloadanaconda-9b910ce0ecbd25c242f5a1b8e439296f03d7e83c.tar.gz
anaconda-9b910ce0ecbd25c242f5a1b8e439296f03d7e83c.tar.xz
anaconda-9b910ce0ecbd25c242f5a1b8e439296f03d7e83c.zip
off by 1024 on the size checking here. oops
Diffstat (limited to 'floppy.py')
-rw-r--r--floppy.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/floppy.py b/floppy.py
index 72d660dbb..7e6596d1c 100644
--- a/floppy.py
+++ b/floppy.py
@@ -87,7 +87,7 @@ def makeBootdisk (intf, dir, floppyDevice, hdList, instPath, bootloader):
# go within 10 K of the size of the boot disk to have a tad
# bit of safety. if this fails, we're no worse off than we used
# to be.
- if size >= 1416 * 1024 * 1024:
+ if size >= 1416 * 1024:
intf.messageWindow(_("Unable to make boot floppy"),
_("The size of the kernel modules needed "
"for your machine make it impossible to "