Explorar el Código

Be exact about the number of spaces in the header.

Also fixes changes files that warn on this.
cypherpunks hace 10 años
padre
commit
034f51dd02
Se han modificado 2 ficheros con 3 adiciones y 3 borrados
  1. 2 2
      changes/bug14806
  2. 1 1
      scripts/maint/lintChanges.py

+ 2 - 2
changes/bug14806

@@ -1,3 +1,3 @@
-   o Minor bugfixes (testing):
-       - Commandline argument tests moved to Stem. Fixes bug 14806.
+  o Minor bugfixes (testing):
+    - Commandline argument tests moved to Stem. Fixes bug 14806.
 

+ 1 - 1
scripts/maint/lintChanges.py

@@ -31,7 +31,7 @@ def lintfile(fname):
     lines = contents.split("\n")
     isBug = ("bug" in lines[0] or "fix" in lines[0])
 
-    if not re.match(r'^ +o (.*)', contents):
+    if not re.match(r'^[ ]{2}o (.*)', contents):
         warn("header not in format expected")
 
     contents = " ".join(contents.split())