rename consprint.py into cli.py
[findit] / src / cli.py
diff --git a/src/cli.py b/src/cli.py
new file mode 100644 (file)
index 0000000..89ca84a
--- /dev/null
@@ -0,0 +1,12 @@
+#!/usr/bin/env python
+# -*-coding: utf-8 -*-
+# vim: sw=4 ts=4 expandtab ai
+# pylint: disable-msg=C0301
+
+class ConsPrint(object):
+
+    def show(self, path, size):
+        print "%12g  %s" % (size/1024./1024., path)
+
+    def __init__(self):
+        pass