mq: fix explain_pushable for negative guards
authorBrendan Cully <brendan@kublai.com>
Mon, 11 Dec 2006 16:32:45 -0800
changeset 3870 22d18051f9e5
parent 3869 ad6f34c83c3d
child 3871 7a4749c5bbcb
mq: fix explain_pushable for negative guards
hgext/mq.py
--- a/hgext/mq.py
+++ b/hgext/mq.py
@@ -212,7 +212,7 @@ class queue:
             if not pushable:
                 if why:
                     write(_('skipping %s - guarded by %r\n') %
-                          (self.series[idx], ' '.join(why)))
+                          (self.series[idx], why))
                 else:
                     write(_('skipping %s - no matching guards\n') %
                           self.series[idx])