diff options
author | Francis Irving <francis@mysociety.org> | 2010-10-18 11:08:26 +0100 |
---|---|---|
committer | Francis Irving <francis@mysociety.org> | 2010-10-18 11:08:26 +0100 |
commit | e85eb6806ca8fe2265baa5cda81464477e9a5bb4 (patch) | |
tree | bf2a81b52bf74488b65c721a6bf958d6fd291526 | |
parent | 310254c4fde3824930bd9034303a431203fcda72 (diff) |
Remove debugging.
-rw-r--r-- | app/models/incoming_message.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/models/incoming_message.rb b/app/models/incoming_message.rb index 71f0613ed..c90af2792 100644 --- a/app/models/incoming_message.rb +++ b/app/models/incoming_message.rb @@ -796,7 +796,7 @@ class IncomingMessage < ActiveRecord::Base return _get_attachment_leaves_recursive(self.mail) end def _get_attachment_leaves_recursive(curr_mail, within_rfc822_attachment = nil) - STDERR.puts "_get_attachment_leaves_recursive", curr_mail.content_type, curr_mail.sub_type, curr_mail.multipart?, "\n" + # STDERR.puts "_get_attachment_leaves_recursive", curr_mail.content_type, curr_mail.sub_type, curr_mail.multipart?, "\n" leaves_found = [] if curr_mail.multipart? if curr_mail.parts.size == 0 |