a6b4cf6d3048ef2a31783e95e1f3c2e5e6517241
[findit] / src / consprint.py
1 #!/usr/bin/env python
2 # -*-coding: utf-8 -*-
3 # vim: sw=4 ts=4 expandtab ai
4 # pylint: disable-msg=C0301
5
6 class ConsPrint(object):
7
8     def show(self, path, size):
9         print "%12g  %s" % (size/1024./1024., path)
10
11     def __init__(self):