--- pyfloppy-1.6.old/pyfloppy.py +++ pyfloppy-1.6/pyfloppy.py @@ -401,8 +401,10 @@ lowlevelbutton.grid(row=0, column=0, columnspan=2, sticky='w', padx=10) self.typelabel = Label(lowlevelframe, text=_('Disk type :')) self.typelabel.grid(row=1, column=0, sticky='w', padx=20) - self.typemenu = OptionMenu(lowlevelframe, self.disk_type, '3.5" 1440 kB', '3.5" 720 kB', - '3.5" 360 kB', '5.25" 1200 kB', '5.25" 720 kB', '5.25" 360 kB') + self.typemenu = OptionMenu(lowlevelframe, self.disk_type, + '3.5" 1722 kB' , '3.5" 1680 kB' , '3.5" 1440 kB' , + '3.5" 720 kB' , '3.5" 360 kB' , '5.25" 1200 kB' , + '5.25" 720 kB' , '5.25" 360 kB') self.typemenu.grid(row=1, column=0, columnspan=2, sticky='e', padx=20) self.typemenu.configure(width=12, takefocus=1) self.verifybutton = Checkbutton(lowlevelframe, text=_('Verify file system'), variable=self.verify, onvalue=1, offvalue=0) @@ -532,7 +534,7 @@ def get_device_node(self): d = self.disk_type.get().split() s = d[1] - if s == '1440' or s == '1200': + if s == '1722' or s == '1680' or s == '1440' or s == '1200': t = 'H' elif s == '720': t = 'Q'