putting interface glade em python

Eu criei uma interface gráfica que quero colocar em um programa python. Eu estava adaptando as instruções de um tutorial que encontrei on-line para carregar no meu arquivo glade (http://www.pygtk.org/articles/pygtk-glade-gui/Creating_a_GUI_using_PyGTK_and_Glade.htm). Quando tive problemas, tentei algo básico (um botão) chamando-o da mesma maneira que naquele tutorial e copiei colando o código deles, e ainda não funcionou. Também observei (http://www.linuxjournal.com/article/6586?page=0,2), que tem uma função que é chamada de maneira um pouco diferente ("self.wTree = gtk.glade.XML (gladefile, windowname) "em vez de sem windowname) e implementou um equivalente ao meu e isso não foi corrigido. Definitivamente tenho o pygtk funcionando, fiz algo sem usar o glade antes e funcionou bem. O erro que estou recebendo é:

/usr/share/themes/NOX/gtk-2.0/gtkrc:233: Murrine configuration option "gradients" 
 is no longer supported and will be ignored.

(helloWorld.py:9804): libglade-WARNING **: Expected <glade-interface>.  Got    
 <interface>.

(helloWorld.py:9804): libglade-WARNING **: did not finish in PARSER_FINISH state
Traceback (most recent call last):
File "helloWorld.py", line 31, in <module>
hwg = HellowWorldGTK()
File "helloWorld.py", line 22, in __init__
self.wTree = gtk.glade.XML(self.gladefile) 
RuntimeError: could not create GladeXML object

Estou executando o xubuntu 11.04. A configuração Murrine surge quando qualquer aplicativo gtk é aberto, mas eu o incluí, caso seja relevante. Aqui está o código que tirei do tutorial (mas não está funcionando)

#!/usr/bin/env python

import sys
try:
    import pygtk
    pygtk.require("2.0")
except:
    pass
try:
    import gtk
    import gtk.glade
except:
    sys.exit(1)

class HellowWorldGTK:
"""This is an Hello World GTK application"""

def __init__(self):

    #Set the Glade file
    self.gladefile = "PyHelloWorld.glade"  
    self.wTree = gtk.glade.XML(self.gladefile) 

    #Get the Main Window, and connect the "destroy" event
    self.window = self.wTree.get_widget("MainWindow")
    self.window.show()
    if (self.window):
        self.window.connect("destroy", gtk.main_quit)


if __name__ == "__main__":
    hwg = HellowWorldGTK()
    gtk.main()

questionAnswers(5)

yourAnswerToTheQuestion