Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: sitescripts/management/bin/generateHgAuth.py

Issue 29951555: Noissue - Designate users case-sensitive in HG authentication (Closed)
Patch Set: Created Nov. 23, 2018, 11:08 a.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sitescripts/management/bin/generateHgAuth.py
===================================================================
--- a/sitescripts/management/bin/generateHgAuth.py
+++ b/sitescripts/management/bin/generateHgAuth.py
@@ -35,7 +35,7 @@
name = name[2:]
if fileinfo.type == tarfile.REGTYPE and name.startswith('users/'):
- name = os.path.basename(name).lower()
+ name = os.path.basename(name)
options = []
match = re.search(r'^(.*)\[(.*)\]$', name)
if match:
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld