diff options
Diffstat (limited to 'lib/puppet/pgraph.rb')
-rw-r--r-- | lib/puppet/pgraph.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/puppet/pgraph.rb b/lib/puppet/pgraph.rb index 894a8fe03..f247f4391 100644 --- a/lib/puppet/pgraph.rb +++ b/lib/puppet/pgraph.rb @@ -60,7 +60,7 @@ class Puppet::PGraph < GRATR::Digraph bad << v unless sorted.include?(v) end - raise Puppet::Error, "Found cycle involving %s" % bad.collect do |v| + raise Puppet::Error, "Found dependency cycle involving %s" % bad.collect do |v| v.to_s end.join(", ") end |