~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/transport/local.py

  • Committer: Robert Collins
  • Date: 2005-10-23 11:46:19 UTC
  • Revision ID: robertc@robertcollins.net-20051023114619-cec8ca25207b1344
More quoting at the transport layer bugfixes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
115
115
        """Iter the relative paths of files in the transports sub-tree."""
116
116
        queue = list(self.list_dir('.'))
117
117
        while queue:
118
 
            relpath = queue.pop(0)
 
118
            relpath = urllib.quote(queue.pop(0))
119
119
            st = self.stat(relpath)
120
120
            if S_ISDIR(st[ST_MODE]):
121
121
                for i, basename in enumerate(self.list_dir(relpath)):