/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 olive/commit.py

  • Committer: Alexander Belchenko
  • Date: 2006-10-25 09:56:13 UTC
  • mto: (91.1.8 trunk) (66.2.10 trunk)
  • mto: This revision was merged to the branch mainline in revision 106.
  • Revision ID: bialix@ukr.net-20061025095613-fb950dfd7a104e6d
Fix bug 67927 (non-ascii commit message saved as utf-8 string)

Show diffs side-by-side

added added

removed removed

Lines of Context:
235
235
    def commit(self, widget):
236
236
        textbuffer = self.textview.get_buffer()
237
237
        start, end = textbuffer.get_bounds()
238
 
        message = textbuffer.get_text(start, end)
 
238
        message = textbuffer.get_text(start, end).decode('utf-8')
239
239
        
240
240
        checkbutton_strict = self.glade.get_widget('checkbutton_commit_strict')
241
241
        checkbutton_force = self.glade.get_widget('checkbutton_commit_force')