* src/GrampsDb/_WriteXML.py (strip_dict): Do not strip tab, LF, CR.
svn: r7390
This commit is contained in:
parent
525c779b0d
commit
13c3884aaa
@ -2,6 +2,7 @@
|
||||
* src/gramps_main.py: use pngs for windows
|
||||
|
||||
2006-10-10 Alex Roitman <shura@gramps-project.org>
|
||||
* src/GrampsDb/_WriteXML.py (strip_dict): Do not strip tab, LF, CR.
|
||||
* src/GrampsDb/_GrampsBSDDB.py (gramps_upgrade_10,
|
||||
gramps_upgrade_11): Properly use TXN.
|
||||
|
||||
|
@ -73,7 +73,7 @@ except:
|
||||
_xml_version = "1.1.3"
|
||||
|
||||
# table for skipping control chars from XML
|
||||
strip_dict = dict.fromkeys(range(20))
|
||||
strip_dict = dict.fromkeys(range(9)+range(12,20))
|
||||
|
||||
#-------------------------------------------------------------------------
|
||||
#
|
||||
|
Loading…
Reference in New Issue
Block a user