~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/graph.py

  • Committer: Andrew Bennetts
  • Date: 2010-12-02 01:59:52 UTC
  • mto: This revision was merged to the branch mainline in revision 5648.
  • Revision ID: andrew.bennetts@canonical.com-20101202015952-4zdgxwi3975rscd1
Fix a bug.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1716
1716
    def __init__(self, repo):
1717
1717
        self._repo = repo
1718
1718
 
 
1719
    def __repr__(self):
 
1720
        return '%s(%r)' % (self.__class__.__name__, self._repo)
 
1721
 
1719
1722
    def get_recipe(self):
1720
1723
        raise NotImplementedError(self.get_recipe)
1721
1724