diff options
author | Kegan Dougal <kegan@matrix.org> | 2015-03-31 11:35:45 +0100 |
---|---|---|
committer | Kegan Dougal <kegan@matrix.org> | 2015-03-31 11:35:45 +0100 |
commit | b59aa745560608c8503421bd9542c99fc1c571b5 (patch) | |
tree | d1a84c66198862dc072e9e3d4b81cceb986ff47e /synapse/appservice | |
parent | Remove more reg/unreg methods. Read config not database for cache. (diff) | |
download | synapse-b59aa745560608c8503421bd9542c99fc1c571b5.tar.xz |
Fix tests and missing returns on deferreds.
Diffstat (limited to 'synapse/appservice')
-rw-r--r-- | synapse/appservice/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/appservice/__init__.py b/synapse/appservice/__init__.py index c60db16b74..a8108c1efb 100644 --- a/synapse/appservice/__init__.py +++ b/synapse/appservice/__init__.py @@ -95,7 +95,7 @@ class ApplicationService(object): # rooms: [ {regex: "[A-z]+.*", exclusive: true}, ...], # } if not namespaces: - return None + namespaces = {} for ns in ApplicationService.NS_LIST: if ns not in namespaces: |