integrations: Switch to python3.

This commit is contained in:
rht 2020-04-02 09:59:28 -04:00 committed by showell
parent d174e589bf
commit a465467388
24 changed files with 24 additions and 24 deletions

View file

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python3
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
import sys import sys

View file

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python3
# #
# EXPERIMENTAL # EXPERIMENTAL
# IRC <=> Zulip mirroring bot # IRC <=> Zulip mirroring bot

View file

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python3
import os import os
import logging import logging
import signal import signal

View file

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python3
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# Zulip mirror of Codebase HQ activity # Zulip mirror of Codebase HQ activity

View file

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python3
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# Zulip notification post-receive hook. # Zulip notification post-receive hook.

View file

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python3
from __future__ import print_function from __future__ import print_function
import datetime import datetime
import httplib2 import httplib2

View file

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python3
# #
# This script depends on python-dateutil and python-pytz for properly handling # This script depends on python-dateutil and python-pytz for properly handling
# times and time zones of calendar events. # times and time zones of calendar events.

View file

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python3
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# Zulip hook for Mercurial changeset pushes. # Zulip hook for Mercurial changeset pushes.

View file

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python3
from __future__ import print_function from __future__ import print_function
import sys import sys

View file

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python3
# #
# Copyright (C) 2013 Permabit, Inc. # Copyright (C) 2013 Permabit, Inc.
# Copyright (C) 2013--2014 Zulip, Inc. # Copyright (C) 2013--2014 Zulip, Inc.

View file

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python3
from __future__ import print_function from __future__ import print_function
import argparse import argparse

View file

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python3
import argparse import argparse
import zulip import zulip

View file

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python3
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# #
# Zulip notification post-receive hook. # Zulip notification post-receive hook.

View file

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python3
# #
# git-p4.py -- A tool for bidirectional operation between a Perforce depot and git. # git-p4.py -- A tool for bidirectional operation between a Perforce depot and git.
# #

View file

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python3
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
'''Zulip notification change-commit hook. '''Zulip notification change-commit hook.

View file

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python3
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# #
# RSS integration for Zulip # RSS integration for Zulip

View file

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python3
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# #
# Zulip notification post-commit hook. # Zulip notification post-commit hook.

View file

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python3
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# #
# An easy Trello integration for Zulip. # An easy Trello integration for Zulip.

View file

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python3
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# Twitter integration for Zulip # Twitter integration for Zulip

View file

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python3
from __future__ import print_function from __future__ import print_function
from __future__ import absolute_import from __future__ import absolute_import
import sys import sys

View file

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python3
import os import os
import sys import sys
import subprocess import subprocess

View file

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python3
import sys import sys
import os import os
import logging import logging

View file

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python3
from __future__ import absolute_import from __future__ import absolute_import
from __future__ import print_function from __future__ import print_function

View file

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python3
from __future__ import absolute_import from __future__ import absolute_import
from typing import IO, Any, Dict, List, Text, Union, Set, Tuple, Optional, cast from typing import IO, Any, Dict, List, Text, Union, Set, Tuple, Optional, cast