hiding away some stuff that I'm mostly done with for now...

This commit is contained in:
Dan Buch
2012-07-09 20:14:14 -04:00
parent b9e8e70867
commit 3b7d21b12f
36 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
from server.people import People
__people__ = People()
person = __people__.get(int(path['id']))
if person:
response.body = {'person': person}
else:
response.code = 404
# vim:filetype=python