summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJay Mundrawala <jmundrawala@chef.io>2017-09-22 10:41:18 -0700
committerJay Mundrawala <jmundrawala@chef.io>2017-09-25 05:50:21 -0700
commit9a6696d1d8a87bba6cab974bd49b661bc59c9513 (patch)
treef7c2423a781563d7a8cc8d75372110dfcb863e99
parent52df3c495316dc71f2a2933843d2520ae0c66d82 (diff)
downloadchef-9a6696d1d8a87bba6cab974bd49b661bc59c9513.tar.gz
Fix chefstyle issue
Signed-off-by: Jay Mundrawala <jmundrawala@chef.io>
-rw-r--r--lib/chef/provider/windows_task.rb2
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