From 40addcd1920b0fa2f558c415e65ea665bac812f9 Mon Sep 17 00:00:00 2001 From: Luke Kanies Date: Mon, 7 Jan 2008 19:24:10 -0600 Subject: Fixing #982 -- I have completely removed the GRATR graph library from the system, and implemented my own topsort method. --- lib/puppet/relationship.rb | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'lib/puppet/relationship.rb') diff --git a/lib/puppet/relationship.rb b/lib/puppet/relationship.rb index c611928f2..05b7dc39e 100644 --- a/lib/puppet/relationship.rb +++ b/lib/puppet/relationship.rb @@ -59,7 +59,11 @@ class Puppet::Relationship end def ref - "%s => %s" % [source.ref, target.ref] + "%s => %s" % [source, target] + end + + def to_s + ref end end -- cgit