File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed
branches/dist-snap/src/etc Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ refs/heads/try: f64fdf524a434f0e5cd0bc91d09c144723f3c90d
6
6
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
7
7
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
8
8
refs/heads/try2: 147ecfdd8221e4a4d4e090486829a06da1e0ca3c
9
- refs/heads/dist-snap: cc61fc09945aeec6fc71a07e91b8610fa71f6425
9
+ refs/heads/dist-snap: 40df08a5c2cf126c3f1a17945ed9a3599b3ebadd
10
10
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
11
11
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503
12
12
refs/heads/try3: 9387340aab40a73e8424c48fd42f0c521a4875c0
Original file line number Diff line number Diff line change @@ -45,9 +45,8 @@ def do_license_check(name, contents):
45
45
openhook = fileinput .hook_encoded ("utf-8" )):
46
46
47
47
if fileinput .filename ().find ("tidy.py" ) == - 1 :
48
- if line .find ("FIXME" ) != - 1 :
49
- if re .search ("FIXME.*#\d+" , line ) == None :
50
- report_err ("FIXME without issue number" )
48
+ if line .find ("// XXX" ) != - 1 :
49
+ report_err ("XXX is no longer necessary, use FIXME" )
51
50
if line .find ("TODO" ) != - 1 :
52
51
report_err ("TODO is deprecated; use FIXME" )
53
52
match = re .match (r'^.*//\s*(NOTE.*)$' , line )
You can’t perform that action at this time.
0 commit comments