comparison mercurial/commands.py @ 14708:8083f4d00bd1 stable

i18n: remove translation of debug messages
author David Soria Parra <dsp@php.net>
date Tue, 21 Jun 2011 18:35:13 +0200
parents b0566467c492
children 88a53081fb21
comparison
equal deleted inserted replaced
14707:964a72038bb0 14708:8083f4d00bd1
4550 4550
4551 Returns 0 on success. 4551 Returns 0 on success.
4552 """ 4552 """
4553 4553
4554 for f in scmutil.rcpath(): 4554 for f in scmutil.rcpath():
4555 ui.debug(_('read config from: %s\n') % f) 4555 ui.debug('read config from: %s\n' % f)
4556 untrusted = bool(opts.get('untrusted')) 4556 untrusted = bool(opts.get('untrusted'))
4557 if values: 4557 if values:
4558 sections = [v for v in values if '.' not in v] 4558 sections = [v for v in values if '.' not in v]
4559 items = [v for v in values if '.' in v] 4559 items = [v for v in values if '.' in v]
4560 if len(items) > 1 or items and sections: 4560 if len(items) > 1 or items and sections: