Merge branch 'master' of github.com:webnotes/wnframework into handlerupdate

This commit is contained in:
Rushabh Mehta 2012-03-21 13:34:02 +01:00
commit bd14b6e936
2 changed files with 2 additions and 2 deletions

View file

@ -41,7 +41,7 @@ def get_bootinfo():
# remove email settings from control panel dict
for field in ['mail_login', 'mail_password', 'mail_port', 'outgoing_mail_server', 'use_ssl']:
del cp[field]
if field in cp: del cp[field]
# system info
bootinfo['control_panel'] = cp.copy()

View file

@ -110,7 +110,7 @@ def notify_assignment(assigned_by, owner, doc_type, doc_name, action='CLOSE', no
arg = {
'uid': owner,
'comment': "A new task, %s, has been assigned to you by %s." \
% (assignment, webnotes.session.get('uer')),
% (assignment, webnotes.session.get('user')),
'notify': notify
}
from home.page.my_company import my_company