# HG changeset patch # User Joerg Sonnenberger # Date 2020-04-10 20:33:14 # Node ID 44aff45b556dd59b572950a2f7cda1361a358068 # Parent 6bef9d43cc55b1beee8245dd34fab973022de8b7 fastexport: make a diagnostics message more localizable Differential Revision: https://phab.mercurial-scm.org/D8398 diff --git a/hgext/fastexport.py b/hgext/fastexport.py --- a/hgext/fastexport.py +++ b/hgext/fastexport.py @@ -42,7 +42,8 @@ def convert_to_git_user(authormap, user, user_person ): raise error.Abort( - _(b"Unable to parse user into person and email for revision " + rev) + _(b"Unable to parse user into person and email for revision %s") + % rev ) if user_person: return b'"' + user_person + b'" <' + user_email + b'>' diff --git a/tests/test-fastexport.t b/tests/test-fastexport.t --- a/tests/test-fastexport.t +++ b/tests/test-fastexport.t @@ -853,3 +853,13 @@ M 644 :5 nf1 M 644 :6 of + $ echo foo > of + $ hg commit --user ' ' --date 'Fri Jan 02 00:00:00 1970 +0000' -m 'Testcommit' + $ hg fastexport --import-marks fastexport.marks -r tip + blob + mark :50 + data 4 + foo + + abort: Unable to parse user into person and email for revision 4f71ca786403919cd16669d94ff7cd1c09437a44 + [255]