Skip to content

Commit

Permalink
improve comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Diego Najar committed Jun 7, 2021
1 parent a01583d commit 7e2a485
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion files/aldap.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ def __decode__(self, word:bytes) -> str:
return word.decode("utf-8")

def __findMatch__(self, group:str, adGroup:str):
# Extract the Common Name from the string (letters, spaces, underscores and hyphen)
# Extract the Common Name from the string (letters, spaces, underscores and hyphens)
adGroup = re.match('CN=((\w*\s?_?-?)*)', adGroup).group(1)

# Disable case sensitive
Expand Down

0 comments on commit 7e2a485

Please sign in to comment.