Ignore:
Timestamp:
25-03-07 23:06:22 (6 years ago)
Author:
thomas
Message:
  • moap/command/cl.py (Checkin, Diff, Prepare): Update summary and description.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/moap/command/cl.py

    r152 r158  
    111111 
    112112class Checkin(util.LogCommand): 
    113     description = "Check in files listed in the latest ChangeLog entry" 
     113    description = "check in files listed in the latest ChangeLog entry" 
    114114    usage = "checkin [path to directory or ChangeLog file]" 
    115115    aliases = ["ci", ] 
     
    146146 
    147147class Diff(util.LogCommand): 
    148     description = "Show diff for all files from last ChangeLog entry" 
     148    description = "show diff for all files from last ChangeLog entry" 
    149149 
    150150    def do(self, args): 
     
    171171 
    172172class Prepare(util.LogCommand): 
    173     description = "Prepares ChangeLog entry from local diff" 
     173    summary = "prepare ChangeLog entry from local diff" 
     174    description = """This command prepares a new ChangeLog entry by analyzing 
     175the local changes. 
     176It uses ctags to extract the tags affected by the changes, and adds them 
     177to the ChangeLog entries. 
     178It decides your name based on your account settings, the REAL_NAME or 
     179CHANGE_LOG_NAME environment variables. 
     180It decides your e-mail address based on the EMAIL_ADDRESS environment 
     181variable. 
     182""" 
     183    usage = "prepare [path to directory or ChangeLog file]" 
    174184    aliases = ["pr", "prep", ] 
    175185 
Note: See TracChangeset for help on using the changeset viewer.