convert: handle comments starting with '#' in authormap files
authorMarti Raudsepp <marti@juffo.org>
Sat, 04 Apr 2009 18:04:38 +0200
changeset 7968 43b70a964e0d
parent 7967 c03f42159afa
child 7969 a969b1470987
convert: handle comments starting with '#' in authormap files
hgext/convert/convcmd.py
tests/test-convert-authormap
--- a/hgext/convert/convcmd.py	Sat Apr 04 17:55:52 2009 +0200
+++ b/hgext/convert/convcmd.py	Sat Apr 04 18:04:38 2009 +0200
@@ -198,7 +198,8 @@
         afile = open(authorfile, 'r')
         for line in afile:
 
-            if line.strip() == '':
+            line = line.strip()
+            if not line or line.startswith('#'):
                 continue
 
             try:
--- a/tests/test-convert-authormap	Sat Apr 04 17:55:52 2009 +0200
+++ b/tests/test-convert-authormap	Sat Apr 04 18:04:38 2009 +0200
@@ -16,6 +16,7 @@
 cat > authormap.txt <<EOF
 user name = Long User Name
 
+# comment
 this line is ignored
 EOF