Oops: remove changes I did not mean to commit

svn: r10537
This commit is contained in:
Doug Blank
2008-04-10 01:41:47 +00:00
parent ec6efb6a95
commit 28345ea6ca
2 changed files with 24 additions and 121 deletions

View File

@ -352,13 +352,9 @@ class ArgHandler:
"""
if self.list:
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])
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
sys.exit(0)
if self.help:
print _help