remove crc table from master branch
[findit] / src / cli.py
1
2 #!/usr/bin/env python
3 # -*-coding: utf-8 -*-
4 # vim: sw=4 ts=4 expandtab ai
5 # pylint: disable-msg=C0301
6
7 class Cli(object):
8
9     def __init__(self):
10         pass
11
12     def show(self, fproperties):
13         path, size = fproperties
14         print "%12g  %s" % (size/1024./1024., path)