Skip to content

Commit 17f7a13

Browse files
committed
make code in random_quote.py a bit more beautiful
1 parent 5601a64 commit 17f7a13

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

quotejson.py

+6
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,9 @@ def json(qs):
1212
'quote': unicode(d['quote']),
1313
})
1414
return simplejson.dumps(r)
15+
16+
def single(q):
17+
if q == None:
18+
return '[]'
19+
else:
20+
return json([q])

random_quote.py

+1-4
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,7 @@ def get(self, **kwargs):
3838
q = None
3939

4040
if json:
41-
if q == None:
42-
out = '[]'
43-
else:
44-
out = quotejson.json([q])
41+
out = quotejson.single(q)
4542
else:
4643
out = render_template(
4744
'cppbash/random_quote.html',

0 commit comments

Comments
 (0)