From 5c1d0e3ba43ec717422317d34acc50abda5b591e Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Sun, 26 Dec 2010 16:33:57 -0500 Subject: [PATCH] Fix a bug in the header output. --- bin/mailshears | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/mailshears b/bin/mailshears index abf46cc..9f91362 100755 --- a/bin/mailshears +++ b/bin/mailshears @@ -97,7 +97,7 @@ Plugin.includers.each do |plugin_class| header += current_time.to_s + "\n" end - header += 'Plugin: ' + plugin_name + "\n" + header += 'Plugin: ' + plugin_class.to_s + "\n" puts header puts '-' * header.size # Underline the header. -- 2.43.2