From: Reinhold Kainhofer <reinhold@kainhofer.com>
Date: Fri, 7 Nov 2008 19:21:14 +0000 (+0100)
Subject: MusicXML: Fix i18n of one particular message
X-Git-Tag: release/2.11.64-1~38
X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=ab6bcd4eab25e0f42e8819d0c62a903e5caa3b39;p=lilypond.git

MusicXML: Fix i18n of one particular message
---

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):