comparison mercurial/commands.py @ 29176:8c8442523eef

merge with stable
author Matt Mackall <mpm@selenic.com>
date Tue, 17 May 2016 11:28:46 -0500
parents a032ebea4e97 aaabed77791a
children c5f9ff302065
comparison
equal deleted inserted replaced
29175:7bcfb9090c86 29176:8c8442523eef
4588 4588
4589 section = None 4589 section = None
4590 subtopic = None 4590 subtopic = None
4591 if name and '.' in name: 4591 if name and '.' in name:
4592 name, section = name.split('.', 1) 4592 name, section = name.split('.', 1)
4593 section = section.lower() 4593 section = encoding.lower(section)
4594 if '.' in section: 4594 if '.' in section:
4595 subtopic, section = section.split('.', 1) 4595 subtopic, section = section.split('.', 1)
4596 else: 4596 else:
4597 subtopic = section 4597 subtopic = section
4598 4598