Fixed repeating level in leaderboard

This commit is contained in:
Rob Hudson 2013-02-12 09:37:49 -08:00
Родитель d6e31afbc1
Коммит d5ed89027a
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -655,7 +655,8 @@ class ReviewerScore(amo.models.ModelBase):
level = amo.REVIEWED_LEVELS[user_level]['name']
if prev == level:
level = ''
prev = level
else:
prev = level
scores.append({
'user_id': user_id,