From 47297af2e90d5b8ea943b03b3ce9711c3914b0bf Mon Sep 17 00:00:00 2001 From: Gerald Britton Date: Mon, 13 Apr 2009 18:57:43 +0000 Subject: [PATCH] ChangeTypes.py: fix small bug in file path build routine. svn: r12439 --- src/plugins/tool/ChangeTypes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/tool/ChangeTypes.py b/src/plugins/tool/ChangeTypes.py index 74c614219..08bca0782 100644 --- a/src/plugins/tool/ChangeTypes.py +++ b/src/plugins/tool/ChangeTypes.py @@ -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)