# HG changeset patch # User Matt Mackall # Date 1308687717 18000 # Node ID 6c7283faa967741009f8223b04b1098ada8ec552 # Parent 8083f4d00bd102d8661b49df0dbd63bea0279dee check-code: don't mark debug messages for translation diff -r 8083f4d00bd1 -r 6c7283faa967 contrib/check-code.py --- a/contrib/check-code.py Tue Jun 21 18:35:13 2011 +0200 +++ b/contrib/check-code.py Tue Jun 21 15:21:57 2011 -0500 @@ -178,6 +178,7 @@ (r'[\s\(](open|file)\([^)]*\)\.', "always assign an opened file to a variable, and close it afterwards"), (r'(?i)descendent', "the proper spelling is descendAnt"), + (r'\.debug\(\_', "don't mark debug messages for translation"), ], # warnings [ diff -r 8083f4d00bd1 -r 6c7283faa967 hgext/relink.py --- a/hgext/relink.py Tue Jun 21 18:35:13 2011 +0200 +++ b/hgext/relink.py Tue Jun 21 15:21:57 2011 -0500 @@ -117,7 +117,7 @@ tgt = os.path.join(dst, fn) ts = linkfilter(srcpath, tgt, st) if not ts: - ui.debug(_('not linkable: %s\n') % fn) + ui.debug('not linkable: %s\n' % fn) continue targets.append((fn, ts.st_size)) ui.progress(_('pruning'), pos, fn, _('files'), total) @@ -159,7 +159,7 @@ sfp.close() dfp.close() if sin: - ui.debug(_('not linkable: %s\n') % f) + ui.debug('not linkable: %s\n' % f) continue try: relinkfile(source, tgt)