~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: 2010-01-31 23:28:33 UTC
  • mfrom: (4988.4.4 doc)
  • Revision ID: pqm@pqm.ubuntu.com-20100131232833-877lg7ld5zr21tc5
(mbp) update URLs in documentation, and various tweaks

Show diffs side-by-side

added added

removed removed

Lines of Context:
3114
3114
    def __init__(self, source_branch, target_branch):
3115
3115
        self.source_branch = source_branch
3116
3116
        self.target_branch = target_branch
 
3117
 
 
3118
 
 
3119
class FileTimestampUnavailable(BzrError):
 
3120
 
 
3121
    _fmt = "The filestamp for %(path)s is not available."
 
3122
 
 
3123
    internal_error = True
 
3124
 
 
3125
    def __init__(self, path):
 
3126
        self.path = path