From 9c7c5453b15bdc1096833db2f469016e1567d4ec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Rapinat?= Date: Sun, 13 Dec 2009 17:47:51 +0000 Subject: [PATCH] fix an unicode conversion bug on nephew level (related to 3114 - thank you Peter) svn: r13788 --- src/plugins/rel/rel_fr.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/plugins/rel/rel_fr.py b/src/plugins/rel/rel_fr.py index 4c06fe188..0202274ab 100644 --- a/src/plugins/rel/rel_fr.py +++ b/src/plugins/rel/rel_fr.py @@ -140,7 +140,7 @@ _brother_level = [u"", u"le frère%s", u"l'oncle%s", u"le grand-oncle%s", u"l'arrière-grand-oncle%s"] _nephew_level = [u"", u"le neveu%s", u"le petit-neveu%s", - "l'arrière-petit-neveu%s"] + u"l'arrière-petit-neveu%s"] _niece_level = [u"", u"la nièce%s", u"la petite-nièce%s", u"l'arrière-petite-nièce%s"] @@ -730,12 +730,12 @@ if __name__ == "__main__": # Test function. Call it as follows from the command line (so as to find # imported modules): # export PYTHONPATH=/path/to/gramps/src - # python src/plugins/rel_fr.py + # python src/plugins/rel/rel_fr.py # (Above not needed here) """TRANSLATORS, copy this if statement at the bottom of your rel_xx.py module, and test your work with: - python src/plugins/rel_xx.py + python src/plugins/rel/rel_xx.py """ from Relationship import test rc = RelationshipCalculator()