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 <simon@laptop.org>
CC: Aleksey Lim <alsroot@member.fsf.org>
This commit is contained in:
Sascha Silbe 2010-10-15 18:28:53 +00:00
parent 60707443ea
commit 72ed58cbca
2 changed files with 12 additions and 6 deletions

View File

@ -61,7 +61,8 @@ class _SVGLoader(object):
logging.error( logging.error(
'Icon %s, entity %s is invalid.', file_name, entity) 'Icon %s, entity %s is invalid.', file_name, entity)
import rsvg # XXX this is very slow! why? # XXX this is very slow! why?
import rsvg
return rsvg.Handle(data=icon) return rsvg.Handle(data=icon)

View File

@ -683,11 +683,16 @@ class _JoinCommand(_BaseCommand):
# since only the owner can change invite-only, that would break # since only the owner can change invite-only, that would break
# activity scope changes. # activity scope changes.
props = { props = {
'anonymous': False, # otherwise buddy resolution breaks # otherwise buddy resolution breaks
'invite-only': False, # anyone who knows about the channel can join 'anonymous': False,
'invite-restricted': False, # so non-owners can invite others # anyone who knows about the channel can join
'persistent': False, # vanish when there are no members 'invite-only': False,
'private': True, # don't appear in server room lists # 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 = [] props_to_set = []
for ident, name, sig_, flags in prop_specs: for ident, name, sig_, flags in prop_specs: