1
0
mirror of https://github.com/ciromattia/kcc synced 2025-12-13 17:56:30 +00:00

py2exe fix

This commit is contained in:
Paweł Jastrzębski
2013-05-28 13:28:09 +02:00
parent 18c3ab2340
commit 43ca5ac5b9
2 changed files with 4 additions and 1 deletions

2
kcc.py
View File

@@ -24,8 +24,10 @@ __docformat__ = 'restructuredtext en'
from Tkinter import *
from kcc import gui
from sys import platform
from multiprocessing import freeze_support
import os
freeze_support()
root = Tk()
root.resizable(width=False, height=False)
root.config(padx=5, pady=5, takefocus=True)