<pre style='margin:0'>
Aljaž Srebrnič (g5pw) pushed a commit to branch reclaim_enhancements
in repository macports-base.

</pre>
<p><a href="https://github.com/macports/macports-base/commit/f495c3519f6b844a31e41364a61f760e7cc0f2d7">https://github.com/macports/macports-base/commit/f495c3519f6b844a31e41364a61f760e7cc0f2d7</a></p>
<pre style="white-space: pre; background: #F8F8F8"><span style='display:block; white-space:pre;color:#808000;'>commit f495c3519f6b844a31e41364a61f760e7cc0f2d7
</span>Author: Aljaž "g5pw" Srebrnič <g5pw@macports.org>
AuthorDate: Mon Mar 12 19:31:15 2018 +0100

<span style='display:block; white-space:pre;color:#404040;'>    port client: fix small bug in ui_ask_yesno
</span><span style='display:block; white-space:pre;color:#404040;'>    
</span><span style='display:block; white-space:pre;color:#404040;'>    This patch fixes a small UI bug: if yesno is called with only one port
</span><span style='display:block; white-space:pre;color:#404040;'>    in the ports as list, it will be displayed as `{portname}`. By
</span><span style='display:block; white-space:pre;color:#404040;'>    explicitly getting `lindex` we can avoid the extra curly braces.
</span>---
 src/port/port.tcl | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

<span style='display:block; white-space:pre;color:#808080;'>diff --git a/src/port/port.tcl b/src/port/port.tcl
</span><span style='display:block; white-space:pre;color:#808080;'>index f0b256b..c348bc5 100755
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/src/port/port.tcl
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/src/port/port.tcl
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -5439,7 +5439,7 @@ namespace eval portclient::questions {
</span>         # Print portname or port list suitably
         if {[llength $ports] == 1} {
             puts -nonewline " "
<span style='display:block; white-space:pre;background:#ffe0e0;'>-            puts [string map {@ " @"} $ports]
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+            puts [string map {@ " @"} [lindex $ports 0]]
</span>         } elseif {[llength $ports] == 0} {
             puts -nonewline " "
         } else {
</pre><pre style='margin:0'>

</pre>