From 58cf2131882061d2e8e5d1e9e5731e499ce832d8 Mon Sep 17 00:00:00 2001 From: Miklos Vajna Date: Fri, 17 Oct 2008 21:36:02 +0200 Subject: [PATCH] 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 --- darcs2git.py | 1 + 1 file changed, 1 insertion(+) 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' -- 2.11.4.GIT