Removed title_id from gramplets; not needed

svn: r17197
This commit is contained in:
Doug Blank
2011-04-22 01:44:20 +00:00
parent 495ca8fc29
commit 4ec351710d
2 changed files with 2 additions and 16 deletions

View File

@@ -197,8 +197,8 @@ class GrampsBar(gtk.Notebook):
base_opts[key] = gramplet.__dict__[key]
fp.write(("[%s]" + NL) % gramplet.gname)
for key in base_opts:
if key in ["content", "title", "title_id", "tname", "row", "column", "page",
"version", "gramps"]: # don't save
if key in ["content", "title", "tname", "row", "column",
"page", "version", "gramps"]: # don't save
continue
elif key == "data":
if not isinstance(base_opts["data"], (list, tuple)):