diff options
author | Adrian Tschira <nota@notafile.com> | 2018-04-15 21:46:23 +0200 |
---|---|---|
committer | Adrian Tschira <nota@notafile.com> | 2018-04-16 00:39:32 +0200 |
commit | a1a3c9660ffc1e99f656c1d39ebe57b8857b207d (patch) | |
tree | 202271009a7d5e8346a2c1994536283bbd764d07 /tests/config | |
parent | Merge branch 'master' of https://github.com/matrix-org/synapse into develop (diff) | |
download | synapse-a1a3c9660ffc1e99f656c1d39ebe57b8857b207d.tar.xz |
Make tests py3 compatible
This is a mixed commit that fixes various small issues * print parentheses * 01 is invalid syntax (it was octal in py2) * [x for i in 1, 2] is invalid syntax * six moves Signed-off-by: Adrian Tschira <nota@notafile.com>
Diffstat (limited to 'tests/config')
-rw-r--r-- | tests/config/test_load.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/config/test_load.py b/tests/config/test_load.py index 161a87d7e3..772afd2cf9 100644 --- a/tests/config/test_load.py +++ b/tests/config/test_load.py @@ -24,7 +24,7 @@ class ConfigLoadingTestCase(unittest.TestCase): def setUp(self): self.dir = tempfile.mkdtemp() - print self.dir + print(self.dir) self.file = os.path.join(self.dir, "homeserver.yaml") def tearDown(self): |