~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/externalcommand.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2007-03-27 06:12:05 UTC
  • mfrom: (2376.1.1 integration)
  • Revision ID: pqm@pqm.ubuntu.com-20070327061205-24256d9f15f6757d
(robertc) Merge 0.8 API removal cleanup.

Show diffs side-by-side

added added

removed removed

Lines of Context:
56
56
    def run(self, *args, **kwargs):
57
57
        raise NotImplementedError('should not be called on %r' % self)
58
58
 
59
 
    def run_argv(self, argv, alias_argv=None):
 
59
    def run_argv_aliases(self, argv, alias_argv=None):
60
60
        return os.spawnv(os.P_WAIT, self.path, [self.path] + argv)
61
61
 
62
62
    def help(self):