From bd6faaf56a6237874cc84ddb8be0f09a9b742a54 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Mon, 2 Jun 2014 02:36:13 +0200 Subject: Remove last instances of pep8 error E712 (use 'is' rather than '==' for booleans) Signed-Off-By: Jelmer Vernooij Reviewed-by: Andrew Bartlett Change-Id: I43b394a6225b4c2049d979fda75548c82d781f67 --- source4/scripting/bin/samba_upgradeprovision | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source4/scripting') 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) -- cgit