diff hgext/mq.py @ 3870:22d18051f9e5

mq: fix explain_pushable for negative guards
author Brendan Cully <brendan@kublai.com>
date Mon, 11 Dec 2006 16:32:45 -0800
parents f6f16f871049
children 7a4749c5bbcb
line wrap: on
line diff
--- 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])