From e9c0469778141c23595363a0d4b1be59e1a9f294 Mon Sep 17 00:00:00 2001 From: Guillaume Seguin Date: Sun, 26 Feb 2012 02:41:50 +0100 Subject: [PATCH] Use format string for translation --- plater.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plater.py b/plater.py index 28f4e5a..6b32404 100755 --- a/plater.py +++ b/plater.py @@ -388,7 +388,7 @@ class stlwin(wx.Frame): facets += i.facets sf.close() stltool.emitstl(name, facets, "plater_export") - print _("wrote "), name + print _("wrote %s") % name def right(self, event): dlg = wx.FileDialog(self, _("Pick file to load"), self.basedir, style=wx.FD_OPEN | wx.FD_FILE_MUST_EXIST)