Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
Tor
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Benjamin J. Thompson
Tor
Commits
f46cdb3f
Commit
f46cdb3f
authored
7 years ago
by
Nick Mathewson
Browse files
Options
Downloads
Patches
Plain Diff
lintchanges: Allow 'fixes bugs a, b, and c'
parent
9f3d9c68
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
scripts/maint/lintChanges.py
+2
-2
2 additions, 2 deletions
scripts/maint/lintChanges.py
with
2 additions
and
2 deletions
scripts/maint/lintChanges.py
+
2
−
2
View file @
f46cdb3f
...
...
@@ -76,13 +76,13 @@ def lintfile(fname):
if
isBug
and
not
re
.
search
(
r
'
(\d+)
'
,
contents
):
warn
(
"
Ticket marked as bugfix, but does not mention a number.
"
)
elif
isBug
and
not
re
.
search
(
r
'
Fixes ([a-z ]*)bug (\d+)
'
,
contents
):
elif
isBug
and
not
re
.
search
(
r
'
Fixes ([a-z ]*)bug
s?
(\d+)
'
,
contents
):
warn
(
"
Ticket marked as bugfix, but does not say
'
Fixes bug XXX
'"
)
if
re
.
search
(
r
'
[bB]ug (\d+)
'
,
contents
):
if
not
re
.
search
(
r
'
[Bb]ugfix on
'
,
contents
):
warn
(
"
Bugfix does not say
'
bugfix on X.Y.Z
'"
)
elif
not
re
.
search
(
'
[fF]ixes ([a-z ]*)bug (\d+); bugfix on
'
,
elif
not
re
.
search
(
'
[fF]ixes ([a-z ]*)bug
s?
(\d+)
((, \d+)* and \d+)?
; bugfix on
'
,
contents
):
warn
(
"
Bugfix does not say
'
Fixes bug X; bugfix on Y
'"
)
elif
re
.
search
(
'
tor-([0-9]+)
'
,
contents
):
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment