~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/branch.py

  • Committer: Martin Pool
  • Date: 2005-08-24 00:34:21 UTC
  • Revision ID: mbp@sourcefrog.net-20050824003421-33dd8e5c739cad2a
- send trace messages out through python logging module

Show diffs side-by-side

added added

removed removed

Lines of Context:
126
126
        head, tail = os.path.split(f)
127
127
        if head == f:
128
128
            # reached the root, whatever that may be
129
 
            raise bzrlib.errors.NotBranchError('%r is not in a branch' % orig_f)
 
129
            raise bzrlib.errors.NotBranchError('%s is not in a branch' % orig_f)
130
130
        f = head
131
131
 
132
132