X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/b0773e2054ab6bc6305142fdd28799e0f41616c9..97e1a72c211205e4596accbfc86cf5eeaec487ee:/lib/wlrepo/mercurial_backend/__init__.py diff --git a/lib/wlrepo/mercurial_backend/__init__.py b/lib/wlrepo/mercurial_backend/__init__.py index a22e49f1..630939f7 100644 --- a/lib/wlrepo/mercurial_backend/__init__.py +++ b/lib/wlrepo/mercurial_backend/__init__.py @@ -7,6 +7,9 @@ __doc__ = "Module documentation." import wlrepo from mercurial.node import nullid +from mercurial import encoding +encoding.encoding = 'utf-8' + class MercurialRevision(wlrepo.Revision): def __init__(self, lib, changectx): @@ -76,6 +79,7 @@ class MercurialRevision(wlrepo.Revision): return bool(self._library._hgrepo.changelog.children(self.hgrev())) def merge_with(self, other, user, message): + message = self._library._sanitize_string(message) lock = self._library.lock(True) try: self._library._checkout(self._changectx.node())