Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Commit

Permalink
fix line length
Browse files Browse the repository at this point in the history
  • Loading branch information
neilisfragile committed Jan 21, 2019
1 parent 5349262 commit 1b53cc3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion synapse/config/registration.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,9 @@ def read_config(self, config):
raise ConfigError('Invalid auto_join_rooms entry %s' % (room_alias,))
self.autocreate_auto_join_rooms = config.get("autocreate_auto_join_rooms", True)

self.disable_msisdn_registration = config.get("disable_msisdn_registration", False)
self.disable_msisdn_registration = (
config.get("disable_msisdn_registration", False)
)

def default_config(self, generate_secrets=False, **kwargs):
if generate_secrets:
Expand Down

0 comments on commit 1b53cc3

Please sign in to comment.