Added some temp files to svn ignore

svn: r10536
This commit is contained in:
Doug Blank
2008-04-10 01:37:31 +00:00
parent dbf925c63e
commit ec6efb6a95
3 changed files with 122 additions and 25 deletions

View File

@ -352,9 +352,13 @@ class ArgHandler:
"""
if self.list:
print 'List of known family trees in your database path\n'
for name, dirname in self.dbman.family_tree_list():
print dirname, ', with name ', name
print 'GRAMPS Family Trees:'
list = self.dbman.family_tree_summary()
for dict in list:
print "Family Tree \"%s\":" % dict["Family tree"]
for item in dict:
if item != "Family tree":
print " %s: %s" % (item, dict[item])
sys.exit(0)
if self.help:
print _help