~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/externalcommand.py

Merge in format-5 work - release bzr 0.1rc1.

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
 
22
22
import os
23
23
import sys
 
24
 
24
25
from bzrlib.commands import Command
25
26
 
26
27
 
43
44
    def __init__(self, path):
44
45
        self.path = path
45
46
 
46
 
 
 
47
 
47
48
    def name(self):
48
49
        return self.path.split(os.sep)[-1]
49
50