module Hoe::MercurialHelpers

def make_commit_log

## returns the diff as-is, but will (someday) do something better.
## Generate a commit log from a diff and return it as a String. At the moment it just
def make_commit_log
	diff = read_command_output( 'hg', 'diff' )
	fail "No differences." if diff.empty?
	return diff
end