# HG changeset patch # User Marti Raudsepp # Date 2009-04-04 16:04:38 # Node ID 43b70a964e0dd9bcf27f44a38491747647a7ba39 # Parent c03f42159aface8c88f7b153caee8d4d15c7496e convert: handle comments starting with '#' in authormap files diff --git a/hgext/convert/convcmd.py b/hgext/convert/convcmd.py --- a/hgext/convert/convcmd.py +++ b/hgext/convert/convcmd.py @@ -198,7 +198,8 @@ class converter(object): afile = open(authorfile, 'r') for line in afile: - if line.strip() == '': + line = line.strip() + if not line or line.startswith('#'): continue try: diff --git a/tests/test-convert-authormap b/tests/test-convert-authormap --- a/tests/test-convert-authormap +++ b/tests/test-convert-authormap @@ -16,6 +16,7 @@ cd .. cat > authormap.txt <