summaryrefslogtreecommitdiffstats
path: root/ipsilon/root.py
diff options
context:
space:
mode:
authorSimo Sorce <simo@redhat.com>2014-05-20 15:25:29 -0400
committerSimo Sorce <simo@redhat.com>2014-05-20 15:31:08 -0400
commitf47a95ba1df58ccf9784c47beeaa0702c469b3e1 (patch)
tree39d30949d1ce208b069390a3d123f917212eb27a /ipsilon/root.py
parentc911c46edffa30445f0d11636e575a7574d965c4 (diff)
downloadipsilon-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/root.py')
-rwxr-xr-xipsilon/root.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ipsilon/root.py b/ipsilon/root.py
index 9451d22..c5fc5ae 100755
--- a/ipsilon/root.py
+++ b/ipsilon/root.py
@@ -33,7 +33,7 @@ sites = dict()
class Root(Page):
def __init__(self, site, template_env):
- if not site in sites:
+ if site not in sites:
sites[site] = dict()
if template_env:
sites[site]['template_env'] = template_env