ChangeTypes.py: fix small bug in file path build routine.

svn: r12439
This commit is contained in:
Gerald Britton 2009-04-13 18:57:43 +00:00
parent a1e9323d3b
commit 47297af2e9

View File

@ -78,7 +78,7 @@ class ChangeTypes(Tool.BatchTool, ManagedWindow.ManagedWindow):
# Draw dialog and make it handle everything
base = os.path.dirname(__file__)
glade_file = "%s/%s" % (base,"changetype.glade")
glade_file = base + os.sep + "changetype.glade"
self.glade = gtk.Builder()
self.glade.add_from_file(glade_file)