Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
go
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
go
Commits
c7ec6ef8
Commit
c7ec6ef8
authored
Nov 17, 2009
by
Rob Pike
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
case insensitive matching in CONTRIBUTORS file
R=rsc
https://golang.org/cl/157043
parent
c51ee432
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
lib/codereview/codereview.py
lib/codereview/codereview.py
+1
-1
No files found.
lib/codereview/codereview.py
View file @
c7ec6ef8
...
@@ -957,7 +957,7 @@ def FindContributor(ui, repo, user, warn=True):
...
@@ -957,7 +957,7 @@ def FindContributor(ui, repo, user, warn=True):
match
=
re
.
match
(
r"(.*) <(.*)>"
,
line
)
match
=
re
.
match
(
r"(.*) <(.*)>"
,
line
)
if
not
match
:
if
not
match
:
continue
continue
if
line
==
user
or
match
.
group
(
2
)
==
user
:
if
line
==
user
or
match
.
group
(
2
)
.
lower
()
==
user
.
lower
()
:
return
match
.
group
(
2
),
line
return
match
.
group
(
2
),
line
if
warn
:
if
warn
:
ui
.
warn
(
"warning: cannot find %s in CONTRIBUTORS
\
n
"
%
(
user
,))
ui
.
warn
(
"warning: cannot find %s in CONTRIBUTORS
\
n
"
%
(
user
,))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment