summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Smith <tim@cozy.co>2015-05-01 21:52:18 -0700
committerTim Smith <tim@cozy.co>2015-05-01 21:52:18 -0700
commitaa6dd9c22449f7d951afca283907bf8b56efdf96 (patch)
treeea4636e1ea0c9b74fcf7d94d674dbd8a3dc4cba9
parentec0cf9def61aa2e104ddc417bac7185774ecd41a (diff)
downloadchef-aa6dd9c22449f7d951afca283907bf8b56efdf96.tar.gz
Add missing ) to error message
-rw-r--r--lib/chef/cookbook_loader.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/chef/cookbook_loader.rb b/lib/chef/cookbook_loader.rb
index 01b8a29a28..79005b1569 100644
--- a/lib/chef/cookbook_loader.rb
+++ b/lib/chef/cookbook_loader.rb
@@ -106,7 +106,7 @@ class Chef
if @cookbooks_by_name.has_key?(cookbook.to_sym) or load_cookbook(cookbook.to_sym)
@cookbooks_by_name[cookbook.to_sym]
else
- raise Exceptions::CookbookNotFoundInRepo, "Cannot find a cookbook named #{cookbook.to_s}; did you forget to add metadata to a cookbook? (https://docs.chef.io/config_rb_metadata.html"
+ raise Exceptions::CookbookNotFoundInRepo, "Cannot find a cookbook named #{cookbook.to_s}; did you forget to add metadata to a cookbook? (https://docs.chef.io/config_rb_metadata.html)"
end
end