~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/externalcommand.py

  • Committer: John Arbash Meinel
  • Date: 2005-09-15 21:35:53 UTC
  • mfrom: (907.1.57)
  • mto: (1393.2.1)
  • mto: This revision was merged to the branch mainline in revision 1396.
  • Revision ID: john@arbash-meinel.com-20050915213552-a6c83a5ef1e20897
(broken) Transport work is merged in. Tests do not pass yet.

Show diffs side-by-side

added added

removed removed

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