From ab6bcd4eab25e0f42e8819d0c62a903e5caa3b39 Mon Sep 17 00:00:00 2001 From: Reinhold Kainhofer Date: Fri, 7 Nov 2008 20:21:14 +0100 Subject: [PATCH] MusicXML: Fix i18n of one particular message --- python/musicexp.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python/musicexp.py b/python/musicexp.py index f049884c30..9d9ea96dc6 100644 --- a/python/musicexp.py +++ b/python/musicexp.py @@ -582,8 +582,8 @@ class RepeatedMusic: self.music = SequentialMusic () self.music.elements = music else: - warning (_ ("unable to set the music %(music)s for the repeat %(repeat)s" % \ - {'music':music, 'repeat':self})) + warning (_ ("unable to set the music %(music)s for the repeat %(repeat)s") % \ + {'music':music, 'repeat':self}) def add_ending (self, music): self.endings.append (music) def print_ly (self, printer): -- 2.39.5