mirror of
https://github.com/samba-team/samba.git
synced 2025-07-30 19:42:05 +03:00
samba.tests.docs: Support spaces before synonyms.
This commit is contained in:
@ -46,7 +46,7 @@ def get_documented_parameters(sourcedir):
|
||||
if m:
|
||||
name = m.group(1).replace(" ", "")
|
||||
yield name
|
||||
m = re.match('<synonym>(.*)</synonym>', l)
|
||||
m = re.match('.*<synonym>(.*)</synonym>.*', l)
|
||||
if m:
|
||||
name = m.group(1).replace(" ", "")
|
||||
yield name
|
||||
|
Reference in New Issue
Block a user