chiark / gitweb /
Oops, forgot to commit. Lots of faffing arround with graphs, graphs will be added...
[familyTree.git] / cgiFiles / person.py
index 84645e60e520c6f86e8da8e6e77dc1c2383319b2..fb0a08c0e50b1858e2abf870d1cebffb6e98ac1a 100755 (executable)
@@ -23,14 +23,14 @@ result = re.match('^[0-9]{1,3}$', str(ID))
 if result == None:
        everyPage.bad()
 else:   
+
        printMe  = askQuestion.person_info(ID,'<br>')
        if len(printMe)<10:
                printMe =  'sorry, no data <br>'
        else:
-               url = "<a href= "+everyPage.base_url()+"ancestors.py?ID="+ID+">Ancestors</a>"
+               url = "<a href= "+everyPage.base_url()+"ancestors.py?ID="+str(ID)+">Ancestors</a>"
                printMe = printMe + '<br>' + url
 
        everyPage.good(printMe)
-
-
+       
 everyPage.bottom(conn)