summary refs log tree commit diff
path: root/scripts
diff options
context:
space:
mode:
authorJonathan de Jong <jonathandejong02@gmail.com>2020-09-17 14:37:01 +0200
committerGitHub <noreply@github.com>2020-09-17 08:37:01 -0400
commit837293c314b47e988fe9532115476a6536cd6406 (patch)
tree9d0ec87ddbe4372a07f8b8053b3f8e3e5c3bd3ee /scripts
parentUse admin_patterns for all admin APIs. (#8331) (diff)
downloadsynapse-837293c314b47e988fe9532115476a6536cd6406.tar.xz
Remove obsolete __future__ imports (#8337)
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/move_remote_media_to_new_store.py2
-rwxr-xr-xscripts/register_new_matrix_user2
2 files changed, 0 insertions, 4 deletions
diff --git a/scripts/move_remote_media_to_new_store.py b/scripts/move_remote_media_to_new_store.py
index b5b63933ab..ab2e763386 100755
--- a/scripts/move_remote_media_to_new_store.py
+++ b/scripts/move_remote_media_to_new_store.py
@@ -32,8 +32,6 @@ To use, pipe the above into::
     PYTHON_PATH=. ./scripts/move_remote_media_to_new_store.py <source repo> <dest repo>
 """
 
-from __future__ import print_function
-
 import argparse
 import logging
 import os
diff --git a/scripts/register_new_matrix_user b/scripts/register_new_matrix_user
index b450712ab7..8b9d30877d 100755
--- a/scripts/register_new_matrix_user
+++ b/scripts/register_new_matrix_user
@@ -14,8 +14,6 @@
 # See the License for the specific language governing permissions and
 # limitations under the License.
 
-from __future__ import print_function
-
 from synapse._scripts.register_new_matrix_user import main
 
 if __name__ == "__main__":