← Back to team overview

openerp-dev-web team mailing list archive

[Merge] lp:~openerp-dev/openobject-addons/trunk-bug-728539-jam into lp:openobject-addons

 

Jigar Amin - OpenERP has proposed merging lp:~openerp-dev/openobject-addons/trunk-bug-728539-jam into lp:openobject-addons.

Requested reviews:
  OpenERP Core Team (openerp)
Related bugs:
  #728539 [6.0.1] wrong date in daily meeting for scrum
  https://bugs.launchpad.net/bugs/728539

For more details, see:
https://code.launchpad.net/~openerp-dev/openobject-addons/trunk-bug-728539-jam/+merge/52165

Hello,
  Changes With merge proposal
   + Bug # lp:728539 : [6.0.1] wrong date in daily meeting for scrum
  Kindly review this
Thank You
-- 
https://code.launchpad.net/~openerp-dev/openobject-addons/trunk-bug-728539-jam/+merge/52165
Your team OpenERP R&D Team is subscribed to branch lp:~openerp-dev/openobject-addons/trunk-bug-728539-jam.
=== modified file 'project_scrum/project_scrum.py'
--- project_scrum/project_scrum.py	2011-01-14 00:11:01 +0000
+++ project_scrum/project_scrum.py	2011-03-04 05:57:56 +0000
@@ -290,7 +290,7 @@
     # TODO: Find the right sprint thanks to users and date
     #
     _defaults = {
-        'date' : time.strftime('%Y-%m-%d'),
+        'date' : lambda *a: time.strftime('%Y-%m-%d'),
     }
 
     def button_send_to_master(self, cr, uid, ids, context=None):


Follow ups