]> jfr.im git - irc/weechat/qweechat.git/commitdiff
Use /usr/bin/env in python shebang
authorSebastien Helleu <redacted>
Fri, 7 Feb 2014 10:39:30 +0000 (11:39 +0100)
committerSebastien Helleu <redacted>
Fri, 7 Feb 2014 10:39:30 +0000 (11:39 +0100)
13 files changed:
setup.py
src/qweechat/about.py
src/qweechat/buffer.py
src/qweechat/chat.py
src/qweechat/config.py
src/qweechat/connection.py
src/qweechat/debug.py
src/qweechat/input.py
src/qweechat/network.py
src/qweechat/qweechat.py
src/qweechat/weechat/color.py
src/qweechat/weechat/protocol.py
src/qweechat/weechat/testproto.py

index d74a1dfc5c36c42570518881f0a3d037326d7ce4..3ad80e0a25e8e604cecde2de2c837b69603f3cc3 100755 (executable)
--- 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 <flashcode@flashtux.org>
index b0fb3b144a5f93452e60b36d8ce894271fbac778..96479a4a1e6e82dd5f8251373b77841f6d2c828f 100644 (file)
@@ -1,4 +1,4 @@
-#!/usr/bin/python
+#!/usr/bin/env python
 # -*- coding: utf-8 -*-
 #
 # about.py - about dialog box
index da594ad30619fddff61d2c871558d2972da9b98e..382e3f69806ae61f44f2585f46b3827bddb26835 100644 (file)
@@ -1,4 +1,4 @@
-#!/usr/bin/python
+#!/usr/bin/env python
 # -*- coding: utf-8 -*-
 #
 # buffer.py - management of WeeChat buffers/nicklist
index 937ab4697a4c66d9471f067c3fd9733b666b82ad..36f420e71739bce2795c04ee11fdee24fa6242ad 100644 (file)
@@ -1,4 +1,4 @@
-#!/usr/bin/python
+#!/usr/bin/env python
 # -*- coding: utf-8 -*-
 #
 # chat.py - chat area
index f5a691b6c2b0d6eb5fcc5aea89c9ba402e1398b9..749597a9e9f063ed484950a917d537d34f569dcc 100644 (file)
@@ -1,4 +1,4 @@
-#!/usr/bin/python
+#!/usr/bin/env python
 # -*- coding: utf-8 -*-
 #
 # config.py - configuration for QWeeChat (~/.qweechat/qweechat.conf)
index aaedf522d777f1220c22ef03450034e810532ebe..a7e0b04e54cfb9a6995583faddf249b040d53090 100644 (file)
@@ -1,4 +1,4 @@
-#!/usr/bin/python
+#!/usr/bin/env python
 # -*- coding: utf-8 -*-
 #
 # connection.py - connection window
index 2a561a49d08bdb0b3f0fc02acb018d36d9e77b56..020f6d032cb8824fe9c68e7ebcb38badea10661e 100644 (file)
@@ -1,4 +1,4 @@
-#!/usr/bin/python
+#!/usr/bin/env python
 # -*- coding: utf-8 -*-
 #
 # debug.py - debug window
index 1c83240f8aabc28ef838cd59ea64c5f03de0e2b1..1fbacd8ad33497c13b58503133cb3de960714e96 100644 (file)
@@ -1,4 +1,4 @@
-#!/usr/bin/python
+#!/usr/bin/env python
 # -*- coding: utf-8 -*-
 #
 # input.py - input line for chat and debug window
index 467845cef42bb9f70738776e24c919af88d447c2..2c3c180189abd35329407f4b368057a51a534707 100644 (file)
@@ -1,4 +1,4 @@
-#!/usr/bin/python
+#!/usr/bin/env python
 # -*- coding: utf-8 -*-
 #
 # network.py - I/O with WeeChat/relay
index 3f316bc436fc78ebc65a96c5bd7e1d4bf8143112..48c8fe0da60fc4b534cd510f73ee175a0229e8a1 100755 (executable)
@@ -1,4 +1,4 @@
-#!/usr/bin/python
+#!/usr/bin/env python
 # -*- coding: utf-8 -*-
 #
 # qweechat.py - WeeChat remote GUI using Qt toolkit
index fe7521d9400f85123d7a54138ff114d1b471baec..e5581a4e39302c9f1ea5a1ead85dca6946899995 100644 (file)
@@ -1,4 +1,4 @@
-#!/usr/bin/python
+#!/usr/bin/env python
 # -*- coding: utf-8 -*-
 #
 # color.py - remove/replace colors in WeeChat strings
index 02b06367b66d9c130b2b43df75dab581b6e254ea..8935e806300581d14ab62b362e307627aa7234ec 100644 (file)
@@ -1,4 +1,4 @@
-#!/usr/bin/python
+#!/usr/bin/env python
 # -*- coding: utf-8 -*-
 #
 # protocol.py - decode binary messages received from WeeChat/relay
index 5edc8f2da9f94a0ef6c2cbdfd5a8d826087dc0b4..ded7f4a22c6a04e375fd2e884f84e204d875d6af 100755 (executable)
@@ -1,4 +1,4 @@
-#!/usr/bin/python
+#!/usr/bin/env python
 # -*- coding: utf-8 -*-
 #
 # testproto.py - command-line program for testing protocol WeeChat/relay