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

(-)file_not_specified_in_diff (-2 / +10 lines)
Line  Link Here
0
-- /a/bin/pyfloppy.py
0
++ /a/bin/pyfloppy.py
Lines 18-24 Link Here
18
#    along with this program; if not, write to the Free Software
18
#    along with this program; if not, write to the Free Software
19
#    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19
#    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
20
##################################################################################
20
##################################################################################
21
import Tkinter
21
import sys
22
try:
23
    import Tkinter
24
except ImportError:
25
    print 'Importing Tkinter failed. You probably have to enable the tk'
26
    print 'USE flag on python.'
27
    print ' '
28
    sys.exit(1)
29
22
Tkinter.wantobjects = 0
30
Tkinter.wantobjects = 0
23
from Tkinter import *
31
from Tkinter import *
24
import ScrolledText
32
import ScrolledText

Return to bug 96949