Password fix on add user
diff --git a/erpnext/home/page/my_company/my_company.py b/erpnext/home/page/my_company/my_company.py
index 9a5f58c..6939062 100644
--- a/erpnext/home/page/my_company/my_company.py
+++ b/erpnext/home/page/my_company/my_company.py
@@ -105,7 +105,7 @@
 	from webnotes.utils.email_lib import sendmail_md
 	args.update({
 		'company': webnotes.conn.get_default('company'),
-		'password': password,
+		'password': args.get('password'),
 		'account_url': webnotes.conn.get_default('account_url')
 	})
 	sendmail_md(pr.email, subject="Welcome to ERPNext", msg=welcome_txt % args)