* src/ansel_utf8.py: Convert to Unix end-of-line.

svn: r4600
This commit is contained in:
Alex Roitman 2005-05-16 19:44:25 +00:00
parent 733d5d4e00
commit 8165bf3974
2 changed files with 6 additions and 4 deletions

View File

@ -1,3 +1,6 @@
2005-05-16 Alex Roitman <shura@gramps-project.org>
* src/ansel_utf8.py: Convert to Unix end-of-line.
2005-05-16 Don Allingham <don@gramps-project.org>
* src/FamilyView.py: fix reordering of children in family view

View File

@ -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