Python/Tkinter racine de fond de la fenêtre de configuration

Je suis en train de créer de la racine de la fenêtre avec un fond noir pour se fondre avec mon bouton de milieux.

J'ai le texte suivant:

class Application(Frame):
    def __init__(self, parent):
        Frame.__init__(self, parent)
        self.parent = parent
        self.initUI()
...

    def initUI(self):
        self.outputBox = Text(bg='black', fg='green', relief=SUNKEN, yscrollcommand='TRUE')
        self.outputBox.pack(fill='both', expand=True)
        self.button1 = Button(self, text='button1', width=40, bg ='black', fg='green', activebackground='black', activeforeground='green')
        self.button1.pack(side=RIGHT, padx=5, pady=5)
        self.button2 = Button(self, text='button2', width=20, bg='black', fg='green', activebackground='black', activeforeground='green')
        self.button2.pack(side=LEFT, padx=5, pady=5)
...

def main():
    root = Tk()   
    root.geometry('1100x350+500+300')
    root.configure(background = 'black')
    app = Application(root)
    root.mainloop()  

Mais root.configure(background = 'black') n'est pas la modification de la fenêtre de la racine de la couleur d'arrière-plan... des suggestions?

Hmm êtes-vous sûr que c'est ça le problème? root.configure(background='black') fonctionne très bien sur mon ordinateur.
Quel système d'exploitation utilisez-vous?
Je suis sous Fedora 16

OriginalL'auteur user1435947 | 2012-06-04