summaryrefslogtreecommitdiffstats
path: root/lib/puppet/application
diff options
context:
space:
mode:
authorDaniel Pittman <daniel@puppetlabs.com>2011-03-31 10:45:33 -0700
committerDaniel Pittman <daniel@puppetlabs.com>2011-04-04 10:19:53 -0700
commit1635454755fa8fdc0dedf032c543d3f4006aa568 (patch)
tree672524d5c64782cbb38a96b69edad1d44d01402c /lib/puppet/application
parent423fe1f6b7c5bc0ca9b53a87f636668514802ad7 (diff)
downloadpuppet-1635454755fa8fdc0dedf032c543d3f4006aa568.tar.gz
puppet-1635454755fa8fdc0dedf032c543d3f4006aa568.tar.xz
puppet-1635454755fa8fdc0dedf032c543d3f4006aa568.zip
(#6749) Remove "save does not work" language from strings.
Now we are pushing into production we can eliminate this language, which was a legacy from the prototype that is no longer relevant globally. Reviewed-By: Pieter van de Bruggen <pieter@puppetlabs.com>
Diffstat (limited to 'lib/puppet/application')
-rw-r--r--lib/puppet/application/string_base.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/puppet/application/string_base.rb b/lib/puppet/application/string_base.rb
index 1169a45a4..09e42a5ef 100644
--- a/lib/puppet/application/string_base.rb
+++ b/lib/puppet/application/string_base.rb
@@ -119,7 +119,7 @@ class Puppet::Application::StringBase < Puppet::Application
end
def validate
unless @action
- raise "You must specify #{string.actions.join(", ")} as a verb; 'save' probably does not work right now"
+ raise "You must specify #{string.actions.join(", ")} as a verb"
end
end
end