tests/selfhelp.py
author Alexander Solovyov <alexander@solovyov.net>
Sun, 23 Jan 2011 18:40:52 +0100
changeset 165 c5d70a729f3d
parent 162 e924a731e195
permissions -rw-r--r--
fix changelog to render to PyPI

from opster import command

@command()
def selfhelp(assist=('', False, 'show help')):
    '''Displays ability to show help'''
    if assist:
        selfhelp.help()
    else:
        print 'no help for you!'

if __name__ == '__main__':
    selfhelp()