# HG changeset patch # User Matt Mackall # Date 1341166254 18000 # Node ID b013baa3898e117959984fc64c29d8c784d2f28b # Parent b335759e045426da7f6d80c0ace14d6a84dffdaf record: fix display of non-ASCII names spotted by Nikolaj Sjujskij diff -r b335759e0454 -r b013baa3898e hgext/record.py --- a/hgext/record.py Sun Jul 01 08:09:00 2012 -0300 +++ b/hgext/record.py Sun Jul 01 13:10:54 2012 -0500 @@ -380,7 +380,7 @@ if skipall is None: h.pretty(ui) msg = (_('examine changes to %s?') % - _(' and ').join(map(repr, h.files()))) + _(' and ').join("'%s'" % f for f in h.files())) r, skipfile, skipall, np = prompt(skipfile, skipall, msg, None) if not r: continue