From b731c7b9615c8a05c8b13138b58fca2ff5dc614a Mon Sep 17 00:00:00 2001 From: Don Allingham Date: Sat, 18 Aug 2001 19:35:30 +0000 Subject: [PATCH] ul2 to u2l syntax error svn: r344 --- gramps/src/GrampsParser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gramps/src/GrampsParser.py b/gramps/src/GrampsParser.py index 5da938687..87b22117e 100644 --- a/gramps/src/GrampsParser.py +++ b/gramps/src/GrampsParser.py @@ -172,7 +172,7 @@ class GrampsParser(handler.ContentHandler): def start_location(self,attrs): loc = Location() if attrs.has_key('city'): - loc.set_city(ul2(attrs['city'])) + loc.set_city(u2l(attrs['city'])) if attrs.has_key('state'): loc.set_state(u2l(attrs['state'])) if attrs.has_key('county'):