/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to __init__.py

  • Committer: John Arbash Meinel
  • Date: 2005-11-17 20:48:06 UTC
  • mto: (1185.82.1 bzr-w-changeset)
  • mto: This revision was merged to the branch mainline in revision 1738.
  • Revision ID: john@arbash-meinel.com-20051117204806-013b3027c63d642b
Fixing options to apply-changeset

Show diffs side-by-side

added added

removed removed

Lines of Context:
10
10
from bzrlib.commands import Command, register_command
11
11
from bzrlib.branch import Branch
12
12
from bzrlib.revisionspec import RevisionSpec
 
13
from bzrlib.option import Option
13
14
 
14
15
class cmd_send_changeset(Command):
15
16
    """Send a bundled up changset via mail.
184
185
 
185
186
    """
186
187
    takes_args = ['filename?']
187
 
    takes_options = ['reverse', 'auto-commit']
 
188
    takes_options = [Option('reverse'), Option('auto-commit')]
188
189
 
189
190
    def run(self, filename=None, reverse=False, auto_commit=False):
190
191
        import apply_changeset