~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/errors.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2011-08-24 20:33:01 UTC
  • mfrom: (6060.7.6 novfs)
  • Revision ID: pqm@pqm.ubuntu.com-20110824203301-6lg9swwyae8kpshj
(jelmer) Add a -Dhpss_client_no_vfs debug flag which prevents client-side
 VFS calls. (Jelmer Vernooij)

Show diffs side-by-side

added added

removed removed

Lines of Context:
3324
3324
    def __init__(self, source, target):
3325
3325
        self.source = source
3326
3326
        self.target = target
 
3327
 
 
3328
 
 
3329
class HpssVfsRequestNotAllowed(BzrError):
 
3330
 
 
3331
    _fmt = ("VFS requests over the smart server are not allowed. Encountered: "
 
3332
            "%(method)s, %(arguments)s.")
 
3333
 
 
3334
    def __init__(self, method, arguments):
 
3335
        self.method = method
 
3336
        self.arguments = arguments