I'm not 100% sure about this; I think it will enable the redirect() actions to
[monitor.git] / printpdb.py
1 #!/usr/bin/python
2
3 import pprint
4 import sys
5 import database
6
7 pp = pprint.PrettyPrinter(indent=4) 
8 o = database.dbLoad(sys.argv[1])
9 pp.pprint(o)