/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/externalcommand.py

  • Committer: Aaron Bentley
  • Date: 2007-04-02 17:18:11 UTC
  • mfrom: (2392 +trunk)
  • mto: This revision was merged to the branch mainline in revision 2393.
  • Revision ID: abentley@panoramicfeedback.com-20070402171811-bz7y2b2h1m1k4n7x
Merge bzr.dev

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):