comparison web/templog.py @ 40:9b5b202129c3

main.c: - get rid of some debugging - separate uart_enabled flag ts.py: - remember next wake time, not the interval log.py: - comments for sqlite templog.py - use cgi
author Matt Johnston <matt@ucc.asn.au>
date Sat, 23 Jun 2012 22:10:23 +0800
parents 8da0fdadc8d7
children 79761ee67134
comparison
equal deleted inserted replaced
39:9a3b967a920c 40:9b5b202129c3
56 56
57 return 'done' 57 return 'done'
58 58
59 def main(): 59 def main():
60 bottle.debug(True) 60 bottle.debug(True)
61 bottle.run(port=9999, reloader=True) 61 bottle.run(server='cgi')
62 #bottle.run(port=9999, reloader=True)
62 63
63 if __name__ == '__main__': 64 if __name__ == '__main__':
64 main() 65 main()
65 66
66 67