From 0096085b6fdff03903cd8584b4e2f50ce255e3a7 Mon Sep 17 00:00:00 2001 From: Frej Drejhammar Date: Sat, 12 Oct 2019 21:09:14 +0200 Subject: [PATCH] Tag maps should use the same syntax as branch and author maps When version v171002 introduced a new mapping file format for branches and authors, that change never made it to the remapping of tags although the README documents it. Fixes #172. --- hg-fast-export.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hg-fast-export.py b/hg-fast-export.py index 4709276..c1c24a8 100755 --- a/hg-fast-export.py +++ b/hg-fast-export.py @@ -616,7 +616,7 @@ if __name__=='__main__': t={} if options.tagsfile!=None: - t=load_mapping('tags', options.tagsfile, True) + t=load_mapping('tags', options.tagsfile, options.raw_mappings) if options.default_branch!=None: set_default_branch(options.default_branch)