website/docs: fix SkipObject exception (#11632)

This commit is contained in:
Marc 'risson' Schmitt
2024-10-14 15:46:36 +02:00
committed by GitHub
parent 466360ecf6
commit 752796a6d7

View File

@ -110,11 +110,11 @@ The following variables are available to LDAP source property mappings:
### Additional expression semantics
If you need to skip synchronization for a specific object, you can raise the `StopSync` exception:
If you need to skip synchronization for a specific object, you can raise the `SkipObject` exception:
```python
if ldap.get("cn") == "doNotSync":
raise StopSync
raise SkipObject
```
## Password login