diff options
author | Emmanuel Gil Peyrot | 2014-08-16 20:37:29 (GMT) |
---|---|---|
committer | Florent Le Coz | 2014-09-01 00:42:45 (GMT) |
commit | 815e647c97c0b9a25d177bb698b4f737340987b5 (patch) | |
tree | c1835586b48482980a8ba0884e1af620e4c26160 | |
parent | ad70ffba59fce531e2da3af2d0a4d08a5f8d75d8 (diff) | |
download | slixmpp-815e647c97c0b9a25d177bb698b4f737340987b5.tar.gz slixmpp-815e647c97c0b9a25d177bb698b4f737340987b5.tar.xz |
Set the shebang to python3 everywhere.
31 files changed, 31 insertions, 31 deletions
diff --git a/examples/IoT_TestDevice.py b/examples/IoT_TestDevice.py index 1d99c61..aff2d94 100755 --- a/examples/IoT_TestDevice.py +++ b/examples/IoT_TestDevice.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # -*- coding: utf-8 -*- """ diff --git a/examples/adhoc_provider.py b/examples/adhoc_provider.py index c709fea..689ea2a 100755 --- a/examples/adhoc_provider.py +++ b/examples/adhoc_provider.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # -*- coding: utf-8 -*- """ diff --git a/examples/adhoc_user.py b/examples/adhoc_user.py index d4b650b..be587e4 100755 --- a/examples/adhoc_user.py +++ b/examples/adhoc_user.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # -*- coding: utf-8 -*- """ diff --git a/examples/admin_commands.py b/examples/admin_commands.py index ed81b88..5ee7079 100755 --- a/examples/admin_commands.py +++ b/examples/admin_commands.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # -*- coding: utf-8 -*- """ diff --git a/examples/custom_stanzas/custom_stanza_provider.py b/examples/custom_stanzas/custom_stanza_provider.py index 163f307..0356b97 100755 --- a/examples/custom_stanzas/custom_stanza_provider.py +++ b/examples/custom_stanzas/custom_stanza_provider.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # -*- coding: utf-8 -*- """ diff --git a/examples/custom_stanzas/custom_stanza_user.py b/examples/custom_stanzas/custom_stanza_user.py index ceadb03..a7388cf 100755 --- a/examples/custom_stanzas/custom_stanza_user.py +++ b/examples/custom_stanzas/custom_stanza_user.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # -*- coding: utf-8 -*- """ diff --git a/examples/disco_browser.py b/examples/disco_browser.py index 9df22bb..ec2e6ed 100755 --- a/examples/disco_browser.py +++ b/examples/disco_browser.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # -*- coding: utf-8 -*- """ diff --git a/examples/download_avatars.py b/examples/download_avatars.py index bd50543..9dd0283 100755 --- a/examples/download_avatars.py +++ b/examples/download_avatars.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # -*- coding: utf-8 -*- """ diff --git a/examples/echo_client.py b/examples/echo_client.py index 2c99215..cf79867 100755 --- a/examples/echo_client.py +++ b/examples/echo_client.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # -*- coding: utf-8 -*- """ diff --git a/examples/echo_component.py b/examples/echo_component.py index a20f8c1..79de3e9 100755 --- a/examples/echo_component.py +++ b/examples/echo_component.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # -*- coding: utf-8 -*- """ diff --git a/examples/gtalk_custom_domain.py b/examples/gtalk_custom_domain.py index b12a047..e6bde69 100755 --- a/examples/gtalk_custom_domain.py +++ b/examples/gtalk_custom_domain.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # -*- coding: utf-8 -*- """ diff --git a/examples/ibb_transfer/ibb_receiver.py b/examples/ibb_transfer/ibb_receiver.py index 625dd45..1f78ce0 100755 --- a/examples/ibb_transfer/ibb_receiver.py +++ b/examples/ibb_transfer/ibb_receiver.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # -*- coding: utf-8 -*- """ diff --git a/examples/ibb_transfer/ibb_sender.py b/examples/ibb_transfer/ibb_sender.py index e89e323..5366c6f 100755 --- a/examples/ibb_transfer/ibb_sender.py +++ b/examples/ibb_transfer/ibb_sender.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # -*- coding: utf-8 -*- """ diff --git a/examples/migrate_roster.py b/examples/migrate_roster.py index 7aed1d3..8e92336 100755 --- a/examples/migrate_roster.py +++ b/examples/migrate_roster.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # -*- coding: utf-8 -*- import sys diff --git a/examples/muc.py b/examples/muc.py index 083c4c2..e67196d 100755 --- a/examples/muc.py +++ b/examples/muc.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # -*- coding: utf-8 -*- """ diff --git a/examples/ping.py b/examples/ping.py index b079c41..5bcd008 100755 --- a/examples/ping.py +++ b/examples/ping.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # -*- coding: utf-8 -*- """ diff --git a/examples/proxy_echo_client.py b/examples/proxy_echo_client.py index 966dd0a..161d6d7 100755 --- a/examples/proxy_echo_client.py +++ b/examples/proxy_echo_client.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # -*- coding: utf-8 -*- """ diff --git a/examples/pubsub_client.py b/examples/pubsub_client.py index 56135ec..afbb437 100755 --- a/examples/pubsub_client.py +++ b/examples/pubsub_client.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # -*- coding: utf-8 -*- import sys diff --git a/examples/pubsub_events.py b/examples/pubsub_events.py index 679112a..6464db9 100755 --- a/examples/pubsub_events.py +++ b/examples/pubsub_events.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # -*- coding: utf-8 -*- import sys diff --git a/examples/register_account.py b/examples/register_account.py index bbe1dc5..7b8a251 100755 --- a/examples/register_account.py +++ b/examples/register_account.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # -*- coding: utf-8 -*- """ diff --git a/examples/roster_browser.py b/examples/roster_browser.py index 1f08796..ca53769 100755 --- a/examples/roster_browser.py +++ b/examples/roster_browser.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # -*- coding: utf-8 -*- """ diff --git a/examples/rpc_async.py b/examples/rpc_async.py index edbad55..6798d63 100755 --- a/examples/rpc_async.py +++ b/examples/rpc_async.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # -*- coding: utf-8 -*- """ diff --git a/examples/rpc_client_side.py b/examples/rpc_client_side.py index 57c0dd5..0a4ba01 100755 --- a/examples/rpc_client_side.py +++ b/examples/rpc_client_side.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # -*- coding: utf-8 -*- """ diff --git a/examples/rpc_server_side.py b/examples/rpc_server_side.py index 438828b..b973e53 100755 --- a/examples/rpc_server_side.py +++ b/examples/rpc_server_side.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # -*- coding: utf-8 -*- """ diff --git a/examples/send_client.py b/examples/send_client.py index d40ac1c..579807b 100755 --- a/examples/send_client.py +++ b/examples/send_client.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # -*- coding: utf-8 -*- """ diff --git a/examples/set_avatar.py b/examples/set_avatar.py index 647bbd8..db18941 100755 --- a/examples/set_avatar.py +++ b/examples/set_avatar.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # -*- coding: utf-8 -*- """ diff --git a/examples/thirdparty_auth.py b/examples/thirdparty_auth.py index 94d4a02..6772e29 100755 --- a/examples/thirdparty_auth.py +++ b/examples/thirdparty_auth.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # -*- coding: utf-8 -*- """ diff --git a/examples/user_location.py b/examples/user_location.py index 1ef7866..823beb0 100755 --- a/examples/user_location.py +++ b/examples/user_location.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 import sys import logging diff --git a/examples/user_tune.py b/examples/user_tune.py index afaa0c2..528a8d4 100755 --- a/examples/user_tune.py +++ b/examples/user_tune.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 import sys import logging @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # -*- coding: utf-8 -*- # # Copyright (C) 2007-2011 Nathanael C. Fritz @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 import sys if len(sys.argv)>1 and sys.argv[1].lower() == 'gevent': |