diff --git a/gramps2/ChangeLog b/gramps2/ChangeLog index 8d4f57d94..cfac47aba 100644 --- a/gramps2/ChangeLog +++ b/gramps2/ChangeLog @@ -1,3 +1,6 @@ +2005-05-16 Alex Roitman + * src/ansel_utf8.py: Convert to Unix end-of-line. + 2005-05-16 Don Allingham * src/FamilyView.py: fix reordering of children in family view diff --git a/gramps2/src/ansel_utf8.py b/gramps2/src/ansel_utf8.py index 1de8a10d1..c2282d2ea 100644 --- a/gramps2/src/ansel_utf8.py +++ b/gramps2/src/ansel_utf8.py @@ -1,7 +1,7 @@ # # Gramps - a GTK+/GNOME based genealogy program # -# Copyright (C) 2003 Donald N. Allingham +# Copyright (C) 2003-2005 Donald N. Allingham # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -18,6 +18,8 @@ # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA # +# $Id$ + import cStringIO _onebyte = { @@ -331,6 +333,3 @@ def utf8_to_ansel(s): ans = buff.getvalue() buff.close() return ans - - -