sup

A curses threads-with-tags style email client

sup.git

git clone https://supmua.dev/git/sup/
commit 11b3c59d8ae571c98e6a9fd2b882fcff6cbb3ff1
parent fb0b41fdf626272c0b2181113d0a8143821e3ce0
Author: William Morgan <wmorgan-sup@masanjin.net>
Date:   Wed, 19 Dec 2007 18:40:43 -0800

disable gpg logging messages because they're a little irritating

Diffstat:
M lib/sup/crypto.rb | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/lib/sup/crypto.rb b/lib/sup/crypto.rb
@@ -156,9 +156,9 @@ private
 
   def run_gpg args
     cmd = "#{@cmd} #{args} 2> /dev/null"
-    Redwood::log "crypto: running: #{cmd}"
+    #Redwood::log "crypto: running: #{cmd}"
     output = `#{cmd}`
-    Redwood::log "crypto: output: #{output.inspect}" unless $?.success?
+    #Redwood::log "crypto: output: #{output.inspect}" unless $?.success?
     output
   end
 end