add longer docstring to show how it is printed by help

This commit is contained in:
Doug Hellmann 2012-04-28 11:07:37 -04:00
parent a5fb90eb6f
commit 16c1759f81
1 changed files with 4 additions and 2 deletions

View File

@ -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__)