Load . into chkpath-python/trunk.
[checkpath-python] / test.py
CommitLineData
333870bb 1import checkpath as CP
2
3class VerboseCheck (CP.CheckPath):
4 def __init__(me):
5 CP.CheckPath.__init__(me)
6 me.what |= CP.REPORT
7 def report(me, what, verb, path, msg):
8 print msg
9
10cp = VerboseCheck()
11cp.check('/home/mdw')
12