~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/transport/local.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2006-03-20 10:33:11 UTC
  • mfrom: (1615.1.2 bzr.mbp.integration)
  • Revision ID: pqm@pqm.ubuntu.com-20060320103311-a87ccd7ffe9ce14f
(mbp) pycurl bugfixes, robert's knit performance stuff

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):