~abentley/bzrtools/bzrtools.dev

« back to all changes in this revision

Viewing changes to errors.py

  • Committer: Aaron Bentley
  • Date: 2007-06-12 22:09:44 UTC
  • mfrom: (540.1.2 bzrtools-0.17)
  • Revision ID: aaron.bentley@utoronto.ca-20070612220944-5zw4hlzp1ctq6mkl
Merge fixes from 0.17

Show diffs side-by-side

added added

removed removed

Lines of Context:
63
63
class ParentMissingRevisions(CommandError):
64
64
    """The parent branch is missing revisions."""
65
65
    def __init__(self, parent):
66
 
        CommandError.__init__(self, 
67
 
            "The parent branch %s is missing revisions from this branch." % 
 
66
        CommandError.__init__(self,
 
67
            "The parent branch %s is missing revisions from this branch." %
68
68
            parent)
69
69
        self.parent = parent
70
70