diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2014-06-02 02:36:13 +0200 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2014-10-14 06:44:06 +0200 |
commit | bd6faaf56a6237874cc84ddb8be0f09a9b742a54 (patch) | |
tree | e6fa05fda6d7cb4747937e4c05b8ff0a166012d6 /source4/scripting/bin | |
parent | b605d152de80889925c7b7a3e723a3581fe5e21a (diff) | |
download | samba-bd6faaf56a6237874cc84ddb8be0f09a9b742a54.tar.gz samba-bd6faaf56a6237874cc84ddb8be0f09a9b742a54.tar.xz samba-bd6faaf56a6237874cc84ddb8be0f09a9b742a54.zip |
Remove last instances of pep8 error E712 (use 'is' rather than '==' for booleans)
Signed-Off-By: Jelmer Vernooij <jelmer@samba.org>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
Change-Id: I43b394a6225b4c2049d979fda75548c82d781f67
Diffstat (limited to 'source4/scripting/bin')
-rwxr-xr-x | source4/scripting/bin/samba_upgradeprovision | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/scripting/bin/samba_upgradeprovision b/source4/scripting/bin/samba_upgradeprovision index c4a0f79329..1893d03eea 100755 --- a/source4/scripting/bin/samba_upgradeprovision +++ b/source4/scripting/bin/samba_upgradeprovision @@ -1786,7 +1786,7 @@ if __name__ == '__main__': # as we are assured that on this DNs we will have differences ! # Also the check must be done in a clever way as for the moment we just # compare SDDL - if dnNotToRecalculateFound == False and (opts.debugchangesd or opts.debugall): + if dnNotToRecalculateFound is False and (opts.debugchangesd or opts.debugall): message(CHANGESD, "Checking recalculated SDs") check_updated_sd(new_ldbs.sam, ldbs.sam, names) |