Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 96949 | Differences between
and this patch

Collapse All | Expand All

(-)pyfloppy.py (-1 / +1 lines)
Lines 246-252 Link Here
246
        self.fs_lab.grid(row=0, column=0, sticky='w')
246
        self.fs_lab.grid(row=0, column=0, sticky='w')
247
        self.ext2b = Radiobutton(fsframe, variable=self.fs, value='/sbin/mke2fs', text=_('ext2'), command=self.toggle_fs)
247
        self.ext2b = Radiobutton(fsframe, variable=self.fs, value='/sbin/mke2fs', text=_('ext2'), command=self.toggle_fs)
248
        self.ext2b.grid(row=0, column=1)
248
        self.ext2b.grid(row=0, column=1)
249
        self.dosb = Radiobutton(fsframe, variable=self.fs, value='/sbin/mkdosfs -v', text=_('dos'), command=self.toggle_fs)
249
        self.dosb = Radiobutton(fsframe, variable=self.fs, value='/usr/sbin/mkdosfs -v', text=_('dos'), command=self.toggle_fs)
250
        self.dosb.grid(row=0, column=2, padx=20)
250
        self.dosb.grid(row=0, column=2, padx=20)
251
        
251
        
252
        #####################################
252
        #####################################

Return to bug 96949