~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/option.py

  • Committer: Martin Pool
  • Date: 2007-07-11 02:32:38 UTC
  • mto: This revision was merged to the branch mainline in revision 2599.
  • Revision ID: mbp@sourcefrog.net-20070711023238-3t8dcgltds9566ke
Fix up tests for option help cleanups

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2004, 2005, 2006 Canonical Ltd
 
1
# Copyright (C) 2004, 2005, 2006, 2007 Canonical Ltd
2
2
#
3
3
# This program is free software; you can redistribute it and/or modify
4
4
# it under the terms of the GNU General Public License as published by
411
411
_global_registry_option('log-format', "Use specified log format.",
412
412
                        log.log_formatter_registry, value_switches=True,
413
413
                        title='Log format')
414
 
_global_option('long', help='Use detailed log format. Same as --log-format long',
415
 
               short_name='l')
416
 
_global_option('short', help='Use moderately short log format. Same as --log-format short')
 
414
_global_option('long',
 
415
        help='Use detailed log format.  Same as --log-format long.',
 
416
        short_name='l')
 
417
_global_option('short',
 
418
        help='Use moderately short log format. Same as --log-format short.')
417
419
_global_option('line', help='Use log format with one line per revision. Same as --log-format line.')
418
420
_global_option('root', type=str)
419
421
_global_option('no-backup')