~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/transport/__init__.py

Bug #827721, OS/IOError will have locale dependent encoding,
 so use %r rather than %s.

Show diffs side-by-side

added added

removed removed

Lines of Context:
325
325
            if e.errno in (errno.ENOENT, errno.ENOTDIR):
326
326
                raise errors.NoSuchFile(path, extra=e)
327
327
            elif e.errno == errno.EINVAL:
328
 
                mutter("EINVAL returned on path %s: %s" % (path, e))
 
328
                mutter("EINVAL returned on path %s: %r" % (path, e))
329
329
                raise errors.NoSuchFile(path, extra=e)
330
330
            # I would rather use errno.EFOO, but there doesn't seem to be
331
331
            # any matching for 267