~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/builtins.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2011-08-14 01:23:48 UTC
  • mfrom: (6045.1.6 207507-bzr-commit-message)
  • Revision ID: pqm@pqm.ubuntu.com-20110814012348-8sg40gtq2rls03fa
(jelmer) Mention ways of specifying a commit message or forcing an empty
 commit message when the user specifies an empty message. (Paul Stewart)

Show diffs side-by-side

added added

removed removed

Lines of Context:
3328
3328
                    raise errors.BzrCommandError("please specify a commit"
3329
3329
                        " message with either --message or --file")
3330
3330
            if my_message == "":
3331
 
                raise errors.BzrCommandError("empty commit message specified")
 
3331
                raise errors.BzrCommandError("Empty commit message specified."
 
3332
                        " Please specify a commit message with either"
 
3333
                        " --message or --file or leave a blank message"
 
3334
                        " with --message \"\".")
3332
3335
            return my_message
3333
3336
 
3334
3337
        # The API permits a commit with a filter of [] to mean 'select nothing'