summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Lehman <dlehman@redhat.com>2010-02-04 16:51:42 -0600
committerDavid Lehman <dlehman@redhat.com>2010-02-05 12:23:53 -0600
commitdf018e0f907f86a431e86e1f18235af5996de342 (patch)
tree94e3def61938ba2b4a0b957d9bbfadd173778409
parent377d9ed2049ca6efaa179f40acfbafb6f8ae3f5f (diff)
downloadanaconda-df018e0f907f86a431e86e1f18235af5996de342.tar.gz
anaconda-df018e0f907f86a431e86e1f18235af5996de342.tar.xz
anaconda-df018e0f907f86a431e86e1f18235af5996de342.zip
Use 0 for a default max_req_size instead of None.
-rw-r--r--iw/partition_dialog_gui.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/iw/partition_dialog_gui.py b/iw/partition_dialog_gui.py
index 7f76c8630..ba464fb06 100644
--- a/iw/partition_dialog_gui.py
+++ b/iw/partition_dialog_gui.py
@@ -150,7 +150,7 @@ class PartitionEditor:
self.fillmaxszsb.update()
maxsize = self.fillmaxszsb.get_value_as_int()
else:
- maxsize = None
+ maxsize = 0
allowdrives = []
model = self.driveview.get_model()