review/rutil.py @ 971a3a6e1df9

Only create a .exists file when we add comment or signoff
author Benoit Allard <benoit@aeteurope.nl>
date Fri, 20 Aug 2010 16:29:35 +0200
parents 96afc843f1a7
children (none)
from mercurial import encoding

def tolocal(s):
    return encoding.tolocal(s.encode('UTF-8'))

def fromlocal(s):
    return s.decode(encoding.encoding, 'replace')