~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/transport/local.py

Merge from mbp.

Show diffs side-by-side

added added

removed removed

Lines of Context:
71
71
        """
72
72
        from bzrlib.osutils import relpath
73
73
        if abspath is None:
74
 
            abspath = '.'
 
74
            abspath = u'.'
75
75
        return relpath(self.base, abspath)
76
76
 
77
77
    def has(self, relpath):
113
113
 
114
114
    def iter_files_recursive(self):
115
115
        """Iter the relative paths of files in the transports sub-tree."""
116
 
        queue = list(self.list_dir('.'))
 
116
        queue = list(self.list_dir(u'.'))
117
117
        while queue:
118
118
            relpath = urllib.quote(queue.pop(0))
119
119
            st = self.stat(relpath)