diff options
-rw-r--r-- | lib/chef/provider/windows_task.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/chef/provider/windows_task.rb b/lib/chef/provider/windows_task.rb index af4b09c38c..b090a3c1d3 100644 --- a/lib/chef/provider/windows_task.rb +++ b/lib/chef/provider/windows_task.rb @@ -489,7 +489,7 @@ class Chef end def parse_day(str) - Date.strptime(str, '%m/%d/%Y') + Date.strptime(str, "%m/%d/%Y") end end |