~abentley/bzrtools/bzrtools.dev

« back to all changes in this revision

Viewing changes to __init__.py

  • Committer: Aaron Bentley
  • Date: 2007-07-12 20:58:10 UTC
  • Revision ID: abentley@panoramicfeedback.com-20070712205810-kvfhbvzbr0loiu0m
Fix the --no-fix option of fetch-ghosts

Show diffs side-by-side

added added

removed removed

Lines of Context:
191
191
    """
192
192
    aliases = ['fetch-missing']
193
193
    takes_args = ['branch?']
194
 
    takes_options = [Option('no-fix')]
 
194
    takes_options = [Option('no-fix', help="Skip additional synchonization.")]
195
195
    def run(self, branch=None, no_fix=False):
196
196
        from fetch_ghosts import fetch_ghosts
197
197
        fetch_ghosts(branch, no_fix)