~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/transport/local.py

Merge from bzr.dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
225
225
        path = self.abspath(relpath)
226
226
        try:
227
227
            return [urllib.quote(entry) for entry in os.listdir(path)]
228
 
        except (IOError, OSError),e:
 
228
        except (IOError, OSError), e:
229
229
            self._translate_error(e, path)
230
230
 
231
231
    def stat(self, relpath):