~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/bundle/commands.py

  • Committer: John Arbash Meinel
  • Date: 2007-03-29 14:07:49 UTC
  • mto: This revision was merged to the branch mainline in revision 2387.
  • Revision ID: john@arbash-meinel.com-20070329140749-8pb42n6lu0k96z3y
(Robert Widhopf-Fenk, bug #98591) Remove --verbose flag from 'bzr bundle'.
The old changeset code used to use --verbose to change the output format slightly.
By making a rename pair be a full delete + add. But it is no longer used, and
is not even a parameter for run() anymore.

Show diffs side-by-side

added added

removed removed

Lines of Context:
96
96
    bzr bundle-revisions --revision A..B
97
97
        - Bundle to transform A into B
98
98
    """
99
 
    takes_options = ['verbose', 'revision', 'remember',
 
99
    takes_options = ['revision', 'remember',
100
100
                     Option("output", help="write bundle to specified file",
101
101
                            type=unicode)]
102
102
    takes_args = ['base?']