aboutsummaryrefslogtreecommitdiffstats
path: root/lib/net/pop.rb
diff options
context:
space:
mode:
authoraamine <aamine@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-05-09 16:19:35 +0000
committeraamine <aamine@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-05-09 16:19:35 +0000
commitc9d3f3dd8a61344d6d1871d4316fc51d64a51fa3 (patch)
treebd95f931c5454fc96c0dd573385f892bfa89405d /lib/net/pop.rb
parentd9c41de9ccd3a1f262b22ddb0c705038c97beef5 (diff)
downloadruby-c9d3f3dd8a61344d6d1871d4316fc51d64a51fa3.tar.gz
* lib/net/pop.rb (loggin): append "\n".
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@6285 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/net/pop.rb')
-rw-r--r--lib/net/pop.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/net/pop.rb b/lib/net/pop.rb
index 056268c76e..f9d64aa8f5 100644
--- a/lib/net/pop.rb
+++ b/lib/net/pop.rb
@@ -678,7 +678,7 @@ module Net
end
def logging(msg)
- @debug_output << msg if @debug_output
+ @debug_output << msg + "\n" if @debug_output
end
end # class POP3