summary refs log tree commit diff
diff options
context:
space:
mode:
authorDavid Baker <dave@matrix.org>2015-03-17 11:53:55 +0000
committerDavid Baker <dave@matrix.org>2015-03-17 11:53:55 +0000
commit6d33f97703f95607da5777299404cb784e1930aa (patch)
tree3ef6a873b0519da2a40c92f01b82be807e09be29
parentWire up the webclient option (diff)
downloadsynapse-6d33f97703f95607da5777299404cb784e1930aa.tar.xz
pep8
-rw-r--r--synapse/python_dependencies.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/synapse/python_dependencies.py b/synapse/python_dependencies.py
index e27ecbed28..6b6d5508b8 100644
--- a/synapse/python_dependencies.py
+++ b/synapse/python_dependencies.py
@@ -26,7 +26,7 @@ CONDITIONAL_REQUIREMENTS = {
 
 def requirements(config=None, include_conditional=False):
     reqs = REQUIREMENTS.copy()
-    for key,req in CONDITIONAL_REQUIREMENTS.items():
+    for key, req in CONDITIONAL_REQUIREMENTS.items():
         if (config and getattr(config, key)) or include_conditional:
             reqs.update(req)
     return reqs
@@ -61,7 +61,8 @@ class MissingRequirementError(Exception):
 def check_requirements(config=None):
     """Checks that all the modules needed by synapse have been correctly
     installed and are at the correct version"""
-    for dependency, module_requirements in requirements(config, include_conditional=False).items():
+    for dependency, module_requirements in (
+            requirements(config, include_conditional=False).items()):
         for module_requirement in module_requirements:
             if ">=" in module_requirement:
                 module_name, required_version = module_requirement.split(">=")