~abentley/bzrtools/bzrtools.dev

« back to all changes in this revision

Viewing changes to __init__.py

  • Committer: Aaron Bentley
  • Date: 2005-11-10 20:14:50 UTC
  • mfrom: (275.1.3)
  • Revision ID: aaron.bentley@utoronto.ca-20051110201450-4d2dc02b79f4ac5b
Merged fix from silverstone

Show diffs side-by-side

added added

removed removed

Lines of Context:
85
85
    """
86
86
    aliases = ['fetch-missing']
87
87
    takes_args = ['branch?']
88
 
    def run(self, branch=None):
 
88
    takes_options = [Option('no-fix')]
 
89
    def run(self, branch=None, no_fix=False):
89
90
        from fetch_ghosts import fetch_ghosts
90
 
        fetch_ghosts(branch)
 
91
        fetch_ghosts(branch, no_fix)
91
92
 
92
93
strip_help="""Strip the smallest prefix containing num leading slashes  from \
93
94
each file name found in the patch file."""