~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/msgeditor.py

  • Committer: ghigo
  • Date: 2007-08-17 17:44:15 UTC
  • mto: (2772.1.1 show-diff)
  • mto: This revision was merged to the branch mainline in revision 2773.
  • Revision ID: ghigo@venice-20070817174415-z9uufl65de5qhvqp
update on the basis of Aaron suggestions

Show diffs side-by-side

added added

removed removed

Lines of Context:
223
223
 
224
224
    Returns a unicode string containing the template.
225
225
    """
226
 
    # TODO: Should probably be given the WorkingTree not the branch
227
 
    #
228
226
    # TODO: make provision for this to be overridden or modified by a hook
229
227
    #
230
228
    # TODO: Rather than running the status command, should prepare a draft of
245
243
 
246
244
    Returns an encoded string.
247
245
    """
248
 
    # TODO: Should probably be given the WorkingTree not the branch
249
 
    #
250
246
    # TODO: make provision for this to be overridden or modified by a hook
251
247
    #
252
248
    # TODO: Rather than running the status command, should prepare a draft of
258
254
    if output_encoding is None:
259
255
        output_encoding = 'utf-8'
260
256
 
261
 
    template = make_commit_message_template(working_tree, specific_files).encode(output_encoding, "replace")
 
257
    template = make_commit_message_template(working_tree, specific_files)
 
258
    template = template.encode(output_encoding, "replace")
262
259
 
263
260
    if diff:
264
261
        stream = StringIO()