mirror of
https://github.com/samba-team/samba.git
synced 2025-12-17 04:23:50 +03:00
PEP8: fix E122: continuation line missing indentation or outdented
Signed-off-by: Joe Guo <joeg@catalyst.net.nz> Reviewed-by: Douglas Bagnall <douglas.bagnall@catalyst.net.nz> Reviewed-by: Andrew Bartlett <abartlet@samba.org>
This commit is contained in:
@@ -237,9 +237,9 @@ class cmd_schema_attribute_show_oc(Command):
|
||||
schema_dn = samdb.schema_dn()
|
||||
|
||||
may_filt = '(&(objectClass=classSchema)' \
|
||||
'(|(mayContain={0})(systemMayContain={0})))'.format(attribute)
|
||||
'(|(mayContain={0})(systemMayContain={0})))'.format(attribute)
|
||||
must_filt = '(&(objectClass=classSchema)' \
|
||||
'(|(mustContain={0})(systemMustContain={0})))'.format(attribute)
|
||||
'(|(mustContain={0})(systemMustContain={0})))'.format(attribute)
|
||||
|
||||
may_res = samdb.search(base=schema_dn, scope=ldb.SCOPE_SUBTREE,
|
||||
expression=may_filt, attrs=['cn'])
|
||||
|
||||
Reference in New Issue
Block a user