summary refs log tree commit diff
diff options
context:
space:
mode:
authorMuthu Subramanian <muthu.subramanian.karunanidhi@ericsson.com>2015-07-08 16:05:46 +0530
committerMuthu Subramanian <muthu.subramanian.karunanidhi@ericsson.com>2015-07-08 16:05:46 +0530
commitf53bae0c1948a8c0a229e0b20f237f7ff4b1d84c (patch)
treeb3e0747beb863fb32545aa458c932320847b02cc
parentcode beautify (diff)
downloadsynapse-f53bae0c1948a8c0a229e0b20f237f7ff4b1d84c.tar.xz
code beautify
-rw-r--r--synapse/config/homeserver.py1
-rw-r--r--synapse/config/saml2.py3
-rw-r--r--synapse/handlers/register.py1
3 files changed, 3 insertions, 2 deletions
diff --git a/synapse/config/homeserver.py b/synapse/config/homeserver.py
index 5c655c5373..d77f045406 100644
--- a/synapse/config/homeserver.py
+++ b/synapse/config/homeserver.py
@@ -27,6 +27,7 @@ from .appservice import AppServiceConfig
 from .key import KeyConfig
 from .saml2 import SAML2Config
 
+
 class HomeServerConfig(TlsConfig, ServerConfig, DatabaseConfig, LoggingConfig,
                        RatelimitConfig, ContentRepositoryConfig, CaptchaConfig,
                        VoipConfig, RegistrationConfig, MetricsConfig,
diff --git a/synapse/config/saml2.py b/synapse/config/saml2.py
index 4f3a724e27..d18d076a89 100644
--- a/synapse/config/saml2.py
+++ b/synapse/config/saml2.py
@@ -15,6 +15,7 @@
 
 from ._base import Config
 
+
 class SAML2Config(Config):
     def read_config(self, config):
         self.saml2_config = config["saml2_config"]
@@ -24,4 +25,4 @@ class SAML2Config(Config):
         saml2_config:
             config_path: "%s/sp_conf.py"
             idp_redirect_url: "http://%s/idp"
-        """%(config_dir_path, server_name)
+        """ % (config_dir_path, server_name)
diff --git a/synapse/handlers/register.py b/synapse/handlers/register.py
index 4c6c5e2972..a1288b4252 100644
--- a/synapse/handlers/register.py
+++ b/synapse/handlers/register.py
@@ -220,7 +220,6 @@ class RegistrationHandler(BaseHandler):
             # Ignore Registration errors
             logger.exception(e)
         defer.returnValue((user_id, token))
-        
 
     @defer.inlineCallbacks
     def register_email(self, threepidCreds):