Mercurial > public > mercurial-scm > hg-stable
diff mercurial/ui.py @ 4085:719488a98ebe
Fix hg showconfig traceback with values that aren't strings
author | Alexis S. L. Carvalho <alexis@cecm.usp.br> |
---|---|
date | Thu, 15 Feb 2007 10:15:08 -0200 |
parents | 1bd6868b0b11 |
children | 0a95d0e83b4c |
line wrap: on
line diff
--- a/mercurial/ui.py Thu Feb 15 08:51:32 2007 -0200 +++ b/mercurial/ui.py Thu Feb 15 10:15:08 2007 -0200 @@ -309,7 +309,7 @@ sections.sort() for section in sections: for name, value in self.configitems(section, untrusted): - yield section, name, value.replace('\n', '\\n') + yield section, name, str(value).replace('\n', '\\n') def extensions(self): result = self.configitems("extensions")