gather_subscriptions: Fix some whitespace.

(imported from commit a36c21c1acf2c2fad4aebb78ab1ac07ab67ff285)
This commit is contained in:
Tim Abbott
2013-06-24 15:18:47 -04:00
parent 9924faaabd
commit 0b9e9bca64

View File

@@ -1007,10 +1007,10 @@ def gather_subscriptions(user_profile):
for sub in subs: for sub in subs:
(stream_name, invite_only) = stream_hash[sub.recipient.type_id] (stream_name, invite_only) = stream_hash[sub.recipient.type_id]
stream = {'name': stream_name, stream = {'name': stream_name,
'in_home_view': sub.in_home_view, 'in_home_view': sub.in_home_view,
'invite_only': invite_only, 'invite_only': invite_only,
'color': sub.color, 'color': sub.color,
'notifications': sub.notifications} 'notifications': sub.notifications}
if sub.active: if sub.active:
subscribed.append(stream) subscribed.append(stream)
else: else: