~abentley/bzrtools/bzrtools.dev

« back to all changes in this revision

Viewing changes to command_classes.py

  • Committer: Aaron Bentley
  • Date: 2009-05-27 18:57:14 UTC
  • Revision ID: aaron@aaronbentley.com-20090527185714-xpuqxlozukn132gi
Clean up fetch_ghosts.

Show diffs side-by-side

added added

removed removed

Lines of Context:
120
120
    takes_options = [Option('no-fix', help="Skip additional synchonization.")]
121
121
    def run(self, branch=None, no_fix=False):
122
122
        from fetch_ghosts import fetch_ghosts
123
 
        fetch_ghosts(branch, no_fix)
 
123
        fetch_ghosts(branch, do_reconcile=not no_fix)
124
124
 
125
125
strip_help="""Strip the smallest prefix containing num leading slashes  from \
126
126
each file name found in the patch file."""