This is an automated email from the git hooks/post-receive script. New commit to branch develop in repository mum. See http://git.chorem.org/mum.git commit 9d646fdcd92093c202eb1aa66ee38ce0143a793b Author: Alexis Guilbaud <guilbaud@codelutin.com> Date: Fri Jul 3 15:41:53 2015 +0200 updated ssh modules for using english language only + sms notif logging errors on every case + --- app/modules/notification_modules/email_notif.py | 4 +++- views/dashboard.html | 3 +-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/app/modules/notification_modules/email_notif.py b/app/modules/notification_modules/email_notif.py index 9769242..fa776a1 100644 --- a/app/modules/notification_modules/email_notif.py +++ b/app/modules/notification_modules/email_notif.py @@ -2,7 +2,7 @@ __author__ = 'aguilbaud' import smtplib from email.mime.text import MIMEText - +from datetime import datetime def get_class_name(): return "EMail" @@ -24,6 +24,8 @@ class EMail: msg_to_send['Subject'] = self.title msg_to_send['From'] = self.settings['smtp_address'] msg_to_send['To'] = self.user_data['email'] + date = datetime.now() + msg_to_send['Date'] = date.isoformat() if self.settings['smtp_port'] == '': s = smtplib.SMTP(self.settings['smtp_server']) else: diff --git a/views/dashboard.html b/views/dashboard.html index bccba57..18ec320 100644 --- a/views/dashboard.html +++ b/views/dashboard.html @@ -217,8 +217,7 @@ <tbody> <tr ng-repeat="(groupname, group) in group_obj | - orderBy:order_val - filter:{groupname:group_filter}" + orderBy:order_val" class="{{group.status}}"> <!-- group:{name:grp} --> <td>{{groupname}}</td> <td> -- To stop receiving notification emails like this one, please contact chorem.org SCM administrator <admin+scm@chorem.org>.