From fbb0156daeaecdb4b899c3fccd6ea7822da00a82 Mon Sep 17 00:00:00 2001 From: Sebastien Helleu Date: Fri, 7 Feb 2014 11:39:30 +0100 Subject: [PATCH] Use /usr/bin/env in python shebang --- setup.py | 2 +- src/qweechat/about.py | 2 +- src/qweechat/buffer.py | 2 +- src/qweechat/chat.py | 2 +- src/qweechat/config.py | 2 +- src/qweechat/connection.py | 2 +- src/qweechat/debug.py | 2 +- src/qweechat/input.py | 2 +- src/qweechat/network.py | 2 +- src/qweechat/qweechat.py | 2 +- src/qweechat/weechat/color.py | 2 +- src/qweechat/weechat/protocol.py | 2 +- src/qweechat/weechat/testproto.py | 2 +- 13 files changed, 13 insertions(+), 13 deletions(-) diff --git a/setup.py b/setup.py index d74a1df..3ad80e0 100755 --- a/setup.py +++ b/setup.py @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/env python # -*- coding: utf-8 -*- # # Copyright (C) 2011-2014 Sébastien Helleu diff --git a/src/qweechat/about.py b/src/qweechat/about.py index b0fb3b1..96479a4 100644 --- a/src/qweechat/about.py +++ b/src/qweechat/about.py @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/env python # -*- coding: utf-8 -*- # # about.py - about dialog box diff --git a/src/qweechat/buffer.py b/src/qweechat/buffer.py index da594ad..382e3f6 100644 --- a/src/qweechat/buffer.py +++ b/src/qweechat/buffer.py @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/env python # -*- coding: utf-8 -*- # # buffer.py - management of WeeChat buffers/nicklist diff --git a/src/qweechat/chat.py b/src/qweechat/chat.py index 937ab46..36f420e 100644 --- a/src/qweechat/chat.py +++ b/src/qweechat/chat.py @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/env python # -*- coding: utf-8 -*- # # chat.py - chat area diff --git a/src/qweechat/config.py b/src/qweechat/config.py index f5a691b..749597a 100644 --- a/src/qweechat/config.py +++ b/src/qweechat/config.py @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/env python # -*- coding: utf-8 -*- # # config.py - configuration for QWeeChat (~/.qweechat/qweechat.conf) diff --git a/src/qweechat/connection.py b/src/qweechat/connection.py index aaedf52..a7e0b04 100644 --- a/src/qweechat/connection.py +++ b/src/qweechat/connection.py @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/env python # -*- coding: utf-8 -*- # # connection.py - connection window diff --git a/src/qweechat/debug.py b/src/qweechat/debug.py index 2a561a4..020f6d0 100644 --- a/src/qweechat/debug.py +++ b/src/qweechat/debug.py @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/env python # -*- coding: utf-8 -*- # # debug.py - debug window diff --git a/src/qweechat/input.py b/src/qweechat/input.py index 1c83240..1fbacd8 100644 --- a/src/qweechat/input.py +++ b/src/qweechat/input.py @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/env python # -*- coding: utf-8 -*- # # input.py - input line for chat and debug window diff --git a/src/qweechat/network.py b/src/qweechat/network.py index 467845c..2c3c180 100644 --- a/src/qweechat/network.py +++ b/src/qweechat/network.py @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/env python # -*- coding: utf-8 -*- # # network.py - I/O with WeeChat/relay diff --git a/src/qweechat/qweechat.py b/src/qweechat/qweechat.py index 3f316bc..48c8fe0 100755 --- a/src/qweechat/qweechat.py +++ b/src/qweechat/qweechat.py @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/env python # -*- coding: utf-8 -*- # # qweechat.py - WeeChat remote GUI using Qt toolkit diff --git a/src/qweechat/weechat/color.py b/src/qweechat/weechat/color.py index fe7521d..e5581a4 100644 --- a/src/qweechat/weechat/color.py +++ b/src/qweechat/weechat/color.py @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/env python # -*- coding: utf-8 -*- # # color.py - remove/replace colors in WeeChat strings diff --git a/src/qweechat/weechat/protocol.py b/src/qweechat/weechat/protocol.py index 02b0636..8935e80 100644 --- a/src/qweechat/weechat/protocol.py +++ b/src/qweechat/weechat/protocol.py @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/env python # -*- coding: utf-8 -*- # # protocol.py - decode binary messages received from WeeChat/relay diff --git a/src/qweechat/weechat/testproto.py b/src/qweechat/weechat/testproto.py index 5edc8f2..ded7f4a 100755 --- a/src/qweechat/weechat/testproto.py +++ b/src/qweechat/weechat/testproto.py @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/env python # -*- coding: utf-8 -*- # # testproto.py - command-line program for testing protocol WeeChat/relay