From 72ed58cbca84964c194d368fade10836f690e1f5 Mon Sep 17 00:00:00 2001 From: Sascha Silbe Date: Fri, 15 Oct 2010 18:28:53 +0000 Subject: PEP8 cleanup: fix inline comment spacing pep8 wants inline comments to be prefixed by at least two spaces. Let's just move them to a separate line as that's easier to read anyway. Acked-by: Simon Schampijer CC: Aleksey Lim --- (limited to 'src/sugar/presence/activity.py') diff --git a/src/sugar/presence/activity.py b/src/sugar/presence/activity.py index d5f5f63..f169e18 100644 --- a/src/sugar/presence/activity.py +++ b/src/sugar/presence/activity.py @@ -683,11 +683,16 @@ class _JoinCommand(_BaseCommand): # since only the owner can change invite-only, that would break # activity scope changes. props = { - 'anonymous': False, # otherwise buddy resolution breaks - 'invite-only': False, # anyone who knows about the channel can join - 'invite-restricted': False, # so non-owners can invite others - 'persistent': False, # vanish when there are no members - 'private': True, # don't appear in server room lists + # otherwise buddy resolution breaks + 'anonymous': False, + # anyone who knows about the channel can join + 'invite-only': False, + # so non-owners can invite others + 'invite-restricted': False, + # vanish when there are no members + 'persistent': False, + # don't appear in server room lists + 'private': True, } props_to_set = [] for ident, name, sig_, flags in prop_specs: -- cgit v0.9.1