/b-gtk/fix-viz

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/b-gtk/fix-viz

« back to all changes in this revision

Viewing changes to commitmsgs.py

  • Committer: Jelmer Vernooij
  • Date: 2012-07-09 15:23:26 UTC
  • mto: This revision was merged to the branch mainline in revision 794.
  • Revision ID: jelmer@samba.org-20120709152326-dzxb8zoz0btull7n
Remove bzr-notify.

Show diffs side-by-side

added added

removed removed

Lines of Context:
59
59
        for fi in file_info:
60
60
            file_message = fi['message']
61
61
            if file_message:
62
 
                file_messages[fi['file_id']] = file_message # utf-8 strings
 
62
                file_id = fi['file_id']
 
63
                assert type(file_id) is str
 
64
                file_messages[file_id] = file_message # utf-8 strings
63
65
        for k,v in file_messages.iteritems():
 
66
            assert type(k) is str
64
67
            try:
65
68
                self.file_messages[k] = v + '\n******\n' + self.file_messages[k]
66
69
            except KeyError: