summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortogakushi <togakushi@localhost>2011-11-26 00:20:11 +0900
committertogakushi <togakushi@localhost>2011-11-26 00:20:11 +0900
commitd0f5de9291239ade5d1aa3d95b9be822cbec0048 (patch)
tree17309c946b851612a0ccb3cd69400bf393d9e121
parentdcd3408b8ab11d6677313748a0f95c9b02799be0 (diff)
downloadsphinx-git-d0f5de9291239ade5d1aa3d95b9be822cbec0048.tar.gz
Changed Conditional Expressions
-rw-r--r--sphinx/util/osutil.py7
-rw-r--r--sphinx/websupport/storage/sqlalchemy_db.py22
2 files changed, 24 insertions, 5 deletions
diff --git a/sphinx/util/osutil.py b/sphinx/util/osutil.py
index ee6a6c858..5becc37df 100644
--- a/sphinx/util/osutil.py
+++ b/sphinx/util/osutil.py
@@ -142,4 +142,9 @@ def safe_relpath(path, start=None):
return path
def find_catalog(docname, compaction):
- return docname.split(SEP, 1)[0] if compaction else docname
+ if compaction:
+ ret = docname.split(SEP, 1)[0]
+ else:
+ ret = docname
+
+ return ret
diff --git a/sphinx/websupport/storage/sqlalchemy_db.py b/sphinx/websupport/storage/sqlalchemy_db.py
index dc2ec6a74..67136d1ae 100644
--- a/sphinx/websupport/storage/sqlalchemy_db.py
+++ b/sphinx/websupport/storage/sqlalchemy_db.py
@@ -77,7 +77,10 @@ class Node(Base):
comments = []
list_stack = [comments]
for r in results:
- comment, vote = r if username else (r, 0)
+ if username:
+ comment, vote = r
+ else:
+ comment, vote = (r, 0)
inheritance_chain = comment.path.split('.')[1:]
@@ -176,7 +179,10 @@ class Comment(Base):
path = self.path.split('.')
node = path[0]
- parent = path[-2] if len(path) > 2 else None
+ if len(path) > 2:
+ parent = path[-2]
+ else:
+ parent = None
return {'text': self.text,
'username': self.username or 'Anonymous',
@@ -201,8 +207,16 @@ class Comment(Base):
minutes = seconds / 60
if days == 0:
- dt = (minutes, 'minute') if hours == 0 else (hours, 'hour')
+ if hours == 0:
+ dt = (minutes, 'minute')
+ else:
+ dt = (hours, 'hour')
else:
dt = (days, 'day')
- return '%s %s ago' % dt if dt[0] == 1 else '%s %ss ago' % dt
+ if dt[0] == 1:
+ ret = '%s %s ago' % dt
+ else:
+ ret = '%s %ss ago' % dt
+
+ return ret