Merge pull request #12506 from hyperized/devel

Add Weekday (0-6) as a number and add weeknumber (00-52)
This commit is contained in:
James Cammarata 2015-09-24 11:44:39 -04:00
commit 9d47eabfa4

View file

@ -622,6 +622,8 @@ class Facts(object):
self.facts['date_time']['year'] = now.strftime('%Y')
self.facts['date_time']['month'] = now.strftime('%m')
self.facts['date_time']['weekday'] = now.strftime('%A')
self.facts['date_time']['weekday_number'] = now.strftime('%w')
self.facts['date_time']['weeknumber'] = now.strftime('%W')
self.facts['date_time']['day'] = now.strftime('%d')
self.facts['date_time']['hour'] = now.strftime('%H')
self.facts['date_time']['minute'] = now.strftime('%M')