mirror of
https://github.com/samba-team/samba.git
synced 2025-08-02 00:22:11 +03:00
PEP8: fix E201: whitespace after '('
Signed-off-by: Joe Guo <joeg@catalyst.net.nz> Reviewed-by: Andrew Bartlett <abartlet@samba.org> Reviewed-by: Douglas Bagnall <douglas.bagnall@catalyst.net.nz>
This commit is contained in:
@ -459,7 +459,7 @@ class cmd_group_move(Command):
|
||||
type=str, metavar="URL", dest="H"),
|
||||
]
|
||||
|
||||
takes_args = [ "groupname", "new_parent_dn" ]
|
||||
takes_args = ["groupname", "new_parent_dn" ]
|
||||
takes_optiongroups = {
|
||||
"sambaopts": options.SambaOptions,
|
||||
"credopts": options.CredentialsOptions,
|
||||
@ -564,7 +564,7 @@ Example3 shows how to display a users objectGUID and member attributes.
|
||||
attrs = group_attrs.split(",")
|
||||
|
||||
filter = ("(&(sAMAccountType=%d)(sAMAccountName=%s))" %
|
||||
( ATYPE_SECURITY_GLOBAL_GROUP,
|
||||
(ATYPE_SECURITY_GLOBAL_GROUP,
|
||||
ldb.binary_encode(groupname)))
|
||||
|
||||
domaindn = samdb.domain_dn()
|
||||
|
Reference in New Issue
Block a user