Copy task color from project template

Hello,

I noticed that when a new project is created from a project template, task colors are not copied to the new created tasks. The solution is really simple. It is only necessary to add a line of code in the “project.py” file, at the end of the function “create_task_from_template”.

	is_group = task_details.is_group,
	color = task_details.color
)).insert()

So the real question is, what is he best way to propose a change in erpnext/frappe code?
I’m not used to create pull request. Is there any reference documentation to make code contributions?

@sergios If your changes are helpful for others, send in a pull request via GitHub and wait for them to be merged in the core.