From 04609fd4d212dc7c4a9bdc8b83197f3265b2d22e Mon Sep 17 00:00:00 2001 From: nick Date: Sun, 24 Nov 2013 23:45:45 -0800 Subject: [PATCH] Thank you good sir. https://groups.google.com/d/msg/sshuttle/1hFK05PsWMg/GdX-zk95iOwJ --- ui-macos/askpass.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui-macos/askpass.py b/ui-macos/askpass.py index 9690c0d..38e99b3 100644 --- a/ui-macos/askpass.py +++ b/ui-macos/askpass.py @@ -22,7 +22,7 @@ def askpass(prompt): rv = p.wait() if rv: return None - g = re.match("text returned:(.*), button returned:.*", out) + g = re.match("button returned:.*, text returned:(.*)", out) if not g: return None return g.group(1)