chiark / gitweb /
Oops, forgot to commit. Lots of faffing arround with graphs, graphs will be added...
[familyTree.git] / familyTree / printYearBorn.py
1 #!/usr/bin/python
2
3 import findYear
4 import sys      
5
6
7
8 if len(sys.argv) < 2:
9         o = findYear.find_year(1)
10 else:   
11      for i in range(1,len(sys.argv)):
12         o = findYear.find_year(sys.argv[i])
13
14
15 print o