From: Miklos Vajna Date: Fri, 17 Oct 2008 19:36:02 +0000 (+0200) Subject: Don't escape accents in the darcs output. X-Git-Url: https://repo.or.cz/w/darcs2git.git/commitdiff_plain/58cf2131882061d2e8e5d1e9e5731e499ce832d8 Don't escape accents in the darcs output. This way we don't get different ids when reading the darcs output and the darcs files directly. Signed-off-by: Miklos Vajna --- diff --git a/darcs2git.py b/darcs2git.py index cbcd784..1b864ed 100755 --- a/darcs2git.py +++ b/darcs2git.py @@ -811,6 +811,7 @@ def main (): system ('mkdir %(git_repo)s && cd %(git_repo)s && git --bare init' % locals ()) system ('git --git-dir %(git_repo)s repo-config core.logAllRefUpdates false' % locals ()) + os.environ['DARCS_DONT_ESCAPE_8BIT'] = '1' os.environ['GIT_DIR'] = git_repo quiet = ' --quiet'