comparison hgext/convert/convcmd.py @ 7599:7bf7c073375e

lowercase ui.debug and assert output This does not effect the log or status commands and should be okay according to the compatibility rules.
author Martin Geisler <mg@daimi.au.dk>
date Sat, 03 Jan 2009 17:15:21 +0100
parents 209ef5f3534c
children 11efa41037e2
comparison
equal deleted inserted replaced
7598:26adfaccdf73 7599:7bf7c073375e
204 if srcauthor in self.authors and dstauthor != self.authors[srcauthor]: 204 if srcauthor in self.authors and dstauthor != self.authors[srcauthor]:
205 self.ui.status( 205 self.ui.status(
206 _('Overriding mapping for author %s, was %s, will be %s\n') 206 _('Overriding mapping for author %s, was %s, will be %s\n')
207 % (srcauthor, self.authors[srcauthor], dstauthor)) 207 % (srcauthor, self.authors[srcauthor], dstauthor))
208 else: 208 else:
209 self.ui.debug(_('Mapping author %s to %s\n') 209 self.ui.debug(_('mapping author %s to %s\n')
210 % (srcauthor, dstauthor)) 210 % (srcauthor, dstauthor))
211 self.authors[srcauthor] = dstauthor 211 self.authors[srcauthor] = dstauthor
212 except IndexError: 212 except IndexError:
213 self.ui.warn( 213 self.ui.warn(
214 _('Ignoring bad line in author map file %s: %s\n') 214 _('Ignoring bad line in author map file %s: %s\n')