diff options
author | Simo Sorce <simo@redhat.com> | 2014-05-20 15:25:29 -0400 |
---|---|---|
committer | Simo Sorce <simo@redhat.com> | 2014-05-20 15:31:08 -0400 |
commit | f47a95ba1df58ccf9784c47beeaa0702c469b3e1 (patch) | |
tree | 39d30949d1ce208b069390a3d123f917212eb27a /ipsilon/helpers | |
parent | c911c46edffa30445f0d11636e575a7574d965c4 (diff) | |
download | ipsilon-f47a95ba1df58ccf9784c47beeaa0702c469b3e1.tar.gz ipsilon-f47a95ba1df58ccf9784c47beeaa0702c469b3e1.tar.xz ipsilon-f47a95ba1df58ccf9784c47beeaa0702c469b3e1.zip |
Fix E713 with stricter pep8 error checker
Signed-off-by: Simo Sorce <simo@redhat.com>
Diffstat (limited to 'ipsilon/helpers')
-rwxr-xr-x | ipsilon/helpers/ipa.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ipsilon/helpers/ipa.py b/ipsilon/helpers/ipa.py index 4948624..722b404 100755 --- a/ipsilon/helpers/ipa.py +++ b/ipsilon/helpers/ipa.py @@ -176,7 +176,7 @@ class Installer(object): self.get_keytab(opts) # Forcibly use krb then pam modules - if not 'lm_order' in opts: + if 'lm_order' not in opts: opts['lm_order'] = [] opts['krb'] = 'yes' if 'krb' not in opts['lm_order']: |