~abentley/bzrtools/bzrtools.dev

« back to all changes in this revision

Viewing changes to __init__.py

  • Committer: Aaron Bentley
  • Date: 2006-06-27 13:27:47 UTC
  • Revision ID: abentley@panoramicfeedback.com-20060627132747-ecdf1eb2c2942bb8
Fix argument order in shove

Show diffs side-by-side

added added

removed removed

Lines of Context:
465
465
       be produced.
466
466
    """
467
467
 
468
 
    takes_args = ['target', 'source?']
 
468
    takes_args = ['source?', 'target']
469
469
    def run(self, target, source='.'):
470
470
        from shove import do_shove
471
471
        do_shove(source, target)