comparison 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
comparison
equal deleted inserted replaced
3869:ad6f34c83c3d 3870:22d18051f9e5
210 write(_('allowing %s - guarded by %r\n') % 210 write(_('allowing %s - guarded by %r\n') %
211 (self.series[idx], why)) 211 (self.series[idx], why))
212 if not pushable: 212 if not pushable:
213 if why: 213 if why:
214 write(_('skipping %s - guarded by %r\n') % 214 write(_('skipping %s - guarded by %r\n') %
215 (self.series[idx], ' '.join(why))) 215 (self.series[idx], why))
216 else: 216 else:
217 write(_('skipping %s - no matching guards\n') % 217 write(_('skipping %s - no matching guards\n') %
218 self.series[idx]) 218 self.series[idx])
219 219
220 def save_dirty(self): 220 def save_dirty(self):