sup

A curses threads-with-tags style email client

sup.git

git clone https://supmua.dev/git/sup/
commit 73c3915b8ed8e5e3907e6afa64e770f29e0383aa
parent ac82b2890971323ec4220aad429f1240745cfe80
Author: Eric Weikl <eric.weikl@tngtech.com>
Date:   Sun, 21 Apr 2013 11:08:31 -0700

Merge pull request #29 from ericweikl/sup-config-bug28

sup-config: call to_s() on user input
Diffstat:
M bin/sup-config | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/bin/sup-config b/bin/sup-config
@@ -24,7 +24,7 @@ def axe q, default=nil
   else
     ask "#{q}: "
   end
-  ans.empty? ? default : ans
+  ans.empty? ? default : ans.to_s
 end
 
 def axe_yes q, default="n"