From c372c584888e799cd36e34f41a28b53191ed9ebe Mon Sep 17 00:00:00 2001 From: Don Allingham Date: Fri, 3 Aug 2001 22:03:37 +0000 Subject: [PATCH] Fixed the read only tuple problem correctly this time. svn: r287 --- src/plugins/WriteGedcom.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/WriteGedcom.py b/src/plugins/WriteGedcom.py index 629fc3ffa..ecc275c72 100644 --- a/src/plugins/WriteGedcom.py +++ b/src/plugins/WriteGedcom.py @@ -345,7 +345,7 @@ def write_source_ref(g,level,ref): if ref_text != "": write_long_text(g,"TEXT",level+1,ref_text) if ref.getDate().getDate(): - g.write("%d DATE %s\n",level+1,ref.getDate().getSaveDate()) + g.write("%d DATE %s\n" % (level+1,ref.getDate().getSaveDate())) if ref.getComments() != "": write_long_text(g,"NOTE",level+1,ref.getComments())