summaryrefslogtreecommitdiffstats
path: root/sca-cpp/trunk/modules/edit/pages.py
diff options
context:
space:
mode:
Diffstat (limited to 'sca-cpp/trunk/modules/edit/pages.py')
-rw-r--r--sca-cpp/trunk/modules/edit/pages.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/sca-cpp/trunk/modules/edit/pages.py b/sca-cpp/trunk/modules/edit/pages.py
index aa84f40162..99392aeeef 100644
--- a/sca-cpp/trunk/modules/edit/pages.py
+++ b/sca-cpp/trunk/modules/edit/pages.py
@@ -33,7 +33,7 @@ def get(id, cache):
if isNil(id):
return (("'feed", ("'title", "Pages"), ("'id", "pages")),)
xhtml = cache.get(appid(id))
- if (isNil(xhtml) or xhtml is None):
+ if isNil(xhtml) or xhtml is None:
return (("'entry", ("'title", car(id)), ("'id", car(id))),)
return (("'entry", ("'title", car(id)), ("'id", car(id)), ("'content", car(xhtml))),)