[minor] remove send_invite_email field from demo docs

This commit is contained in:
Pratik Vyas
2013-09-23 16:04:50 +05:30
parent cfed8c44b4
commit 0eb811a518
2 changed files with 40 additions and 42 deletions

View File

@@ -42,7 +42,6 @@ def make_demo_user():
p.doc.last_name = "User"
p.doc.enabled = 1
p.doc.user_type = "ERPNext Demo"
# p.doc.send_invite_email = 0
p.doc.new_password = "demo"
p.insert()
add_roles(p)
@@ -58,7 +57,6 @@ def make_demo_user():
p.doc.last_name = "User"
p.doc.enabled = 1
p.doc.user_type = "System User"
p.doc.send_invite_email = 0
p.doc.new_password = "admin010123"
p.insert()
roles.append("System Manager")