~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/builtins.py

  • Committer: Aaron Bentley
  • Date: 2008-12-02 05:44:17 UTC
  • mto: This revision was merged to the branch mainline in revision 3893.
  • Revision ID: aaron@aaronbentley.com-20081202054417-24d9o48m6l55ln8w
Return metadata as a dict.

Show diffs side-by-side

added added

removed removed

Lines of Context:
4816
4816
                note('No shelved changes.')
4817
4817
                return 0
4818
4818
            for shelf_id in reversed(shelves):
4819
 
                base_revision_id, message = manager.load_metadata(shelf_id)
 
4819
                message = manager.load_metadata(shelf_id).get('message')
4820
4820
                if message is None:
4821
4821
                    message = '<no message>'
4822
4822
                self.outf.write('%3d: %s\n' % (shelf_id, message))