summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDoug Hellmann <doug.hellmann@dreamhost.com>2012-04-28 11:07:37 -0400
committerDoug Hellmann <doug.hellmann@dreamhost.com>2012-04-28 11:07:37 -0400
commit16c1759f81ff3f7670722587c2c1d05b4fdb4ba8 (patch)
treef77d05024c07ceaae3c42326b95c6c0f2052f6df
parenta5fb90eb6f8f0fa6f70c5e0011e9e539a565136a (diff)
downloadcliff-tablib-16c1759f81ff3f7670722587c2c1d05b4fdb4ba8.tar.gz
add longer docstring to show how it is printed by help
-rw-r--r--demoapp/cliffdemo/list.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/demoapp/cliffdemo/list.py b/demoapp/cliffdemo/list.py
index e1a04a4..124997f 100644
--- a/demoapp/cliffdemo/list.py
+++ b/demoapp/cliffdemo/list.py
@@ -1,12 +1,14 @@
import logging
import os
-import stat
from cliff.lister import Lister
class Files(Lister):
- "Show a list of files in the current directory."
+ """Show a list of files in the current directory.
+
+ The file name and size are printed by default.
+ """
log = logging.getLogger(__name__)