1
0
mirror of https://github.com/samba-team/samba.git synced 2025-12-17 04:23:50 +03:00

python:samba:netcmd: Fix code spelling

Signed-off-by: Andreas Schneider <asn@samba.org>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
This commit is contained in:
Andreas Schneider
2023-06-06 13:17:58 +02:00
committed by Andreas Schneider
parent de2c4879ce
commit e046986d04
14 changed files with 31 additions and 30 deletions

View File

@@ -97,7 +97,7 @@ def netcmd_get_domain_infos_via_cldap(lp, creds, address=None):
def is_printable_attr_val(val):
import unicodedata
# The value must be convertable to a string value.
# The value must be convertible to a string value.
try:
str_val = str(val)
except: