/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:
1
 
# Copyright (C) 2011, 2013 by Szilveszter Farkas (Phanatic) <szilveszter.farkas@gmail.com>
 
1
# Copyright (C) 2006 by Szilveszter Farkas (Phanatic) <szilveszter.farkas@gmail.com>
2
2
#
3
3
# This program is free software; you can redistribute it and/or modify
4
4
# it under the terms of the GNU General Public License as published by
35
35
        else:
36
36
            config = branch.get_config()
37
37
            self.global_message = config.get_user_option(
38
 
                'gtk_global_commit_message', expand=False)
 
38
                'gtk_global_commit_message')
39
39
            if self.global_message is None:
40
40
                self.global_message = u''
41
 
            file_messages = config.get_user_option(
42
 
                'gtk_file_commit_messages' , expand=False)
 
41
            file_messages = config.get_user_option('gtk_file_commit_messages')
43
42
            if file_messages: # unicode and B-encoded:
44
43
                self.file_messages = bencode.bdecode(
45
44
                    file_messages.encode('UTF-8'))