~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/smart/vfs.py

  • Committer: John Arbash Meinel
  • Date: 2007-12-18 18:25:12 UTC
  • mto: (3099.3.2 graph_optimization)
  • mto: This revision was merged to the branch mainline in revision 3124.
  • Revision ID: john@arbash-meinel.com-20071218182512-147g8dhwfd3gv7dh
find_previous_heads was deprecated in 0.91, not 0.93

Show diffs side-by-side

added added

removed removed

Lines of Context:
75
75
        except errors.ReadError:
76
76
            # cannot read the file
77
77
            return request.FailedSmartServerResponse(('ReadError', ))
78
 
        except errors.PermissionDenied:
79
 
            return request.FailedSmartServerResponse(('PermissionDenied',))
80
78
        return request.SuccessfulSmartServerResponse(('ok',), backing_bytes)
81
79
 
82
80