forgot a table suffix, fix activitylog test

This commit is contained in:
Kevin Ngo 2013-03-25 23:29:04 -07:00
Родитель f1f5f513af
Коммит bd7bddc62f
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -227,7 +227,7 @@ class ActivityLogManager(amo.models.ManagerBase):
def _by_type(self, webapp=False):
qs = super(ActivityLogManager, self).get_query_set()
table = (table_name('log_activity_app') if webapp
else 'log_activity_addon')
else table_name('log_activity_addon'))
return qs.extra(
tables=[table],
where=['%s.activity_log_id=%s.id'