Skip to content

Commit 5a2dc27

Browse files
committed
small
1 parent 06e30ab commit 5a2dc27

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

vocably.py

+2-3
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,8 @@ def words():
1616
newwords = score.choose_words(user_email)
1717
# newwords = ['grinder','helicopter','fab']
1818
word_defs = {w:definition.definition(w) for w in newwords}
19-
user_score = db.get_score(user_email)
20-
print 'user score:', user_score
21-
output = template('words', word_defs=word_defs, user_score=user_score)
19+
user_score = score.get_score(user_email)
20+
output = template('words', word_defs=word_defs)
2221
return output
2322

2423
@route('/login')

0 commit comments

Comments
 (0)