Remove check for lounge contributors

This is no longer necessary when /r/lounge is a gold_only subreddit
This commit is contained in:
MelissaCole
2015-02-05 16:06:35 -08:00
parent c24a01497a
commit a45218804b

View File

@@ -534,9 +534,7 @@ class Subreddit(Thing, Printable, BaseSite):
return self._spam
def is_contributor(self, user):
if self.name.lower() == g.lounge_reddit.lower():
return user.gold or user.gold_charter
elif self.type == 'employees_only':
if self.type == 'employees_only':
return user.employee
else:
return super(Subreddit, self).is_contributor(user)