2 files changed, 22 insertions, 10 deletions
diff --git a/.travis.yml b/.travis.yml
index 3ce93cb434..e6ba6f4752 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,14 +1,22 @@
sudo: false
language: python
-python: 2.7
# tell travis to cache ~/.cache/pip
cache: pip
-env:
- - TOX_ENV=packaging
- - TOX_ENV=pep8
- - TOX_ENV=py27
+matrix:
+ include:
+ - python: 2.7
+ env: TOX_ENV=packaging
+
+ - python: 2.7
+ env: TOX_ENV=pep8
+
+ - python: 2.7
+ env: TOX_ENV=py27
+
+ - python: 3.6
+ env: TOX_ENV=py36
install:
- pip install tox
diff --git a/synapse/handlers/appservice.py b/synapse/handlers/appservice.py
index 6cc2388306..0d11d890ff 100644
--- a/synapse/handlers/appservice.py
+++ b/synapse/handlers/appservice.py
@@ -262,11 +262,15 @@ class ApplicationServicesHandler(object):
event based on the service regex.
"""
services = self.store.get_app_services()
- interested_list = [
- s for s in services if (
- yield s.is_interested(event, self.store)
- )
- ]
+
+ # we can't use a list comprehension here. Since python 3, list
+ # comprehensions use a generator internally. This means you can't yield
+ # inside of a list comprehension anymore.
+ interested_list = []
+ for s in services:
+ if (yield s.is_interested(event, self.store)):
+ interested_list.append(s)
+
defer.returnValue(interested_list)
def _get_services_for_user(self, user_id):
|