diff -r b92baef99ebf -r 580d5e6bfc1f mercurial/hgweb/hgwebdir_mod.py --- a/mercurial/hgweb/hgwebdir_mod.py Tue Aug 12 13:45:48 2008 +0200 +++ b/mercurial/hgweb/hgwebdir_mod.py Sat Aug 16 14:46:56 2008 +0200 @@ -172,7 +172,7 @@ try: u.readconfig(os.path.join(path, '.hg', 'hgrc')) except Exception, e: - u.warn(_('error reading %s/.hg/hgrc: %s\n' % (path, e))) + u.warn(_('error reading %s/.hg/hgrc: %s\n') % (path, e)) continue def get(section, name, default=None): return u.config(section, name, default, untrusted=True)