--- anaconda-7.3/textw/partition_text.py	Fri Sep  7 11:27:10 2001
+++ anaconda-7.3-f1/textw/partition_text.py	Tue Aug 20 17:40:26 2002
@@ -768,6 +768,16 @@
                     request.fstype = newfstype
                     request.badblocks = badblocks
 
+# CJS made the default to format a "/" partition on install,  this was the
+# default for 7.1 and so it will be the default here
+		if request.mountpoint == "/" and isFormatOnByDefault(request):
+		   request.format = TRUE 
+# This check is in case they really do not want to format it, this gives them
+# a way out
+		if format == 0 :
+		   request.format = 0
+# CJS end change
+
                 err = sanityCheckPartitionRequest(self.partitions, request)
                 if err:
                     self.intf.messageWindow(_("Error With Request"),
@@ -777,7 +787,6 @@
 #                if not origrequest.format and request.format:
 #                    if not queryFormatPreExisting(self.intf):
 #                        continue
-
                 if not request.format and request.mountpoint and isFormatOnByDefault(request):
                     if not queryNoFormatPreExisting(self.intf):
                         continue
