diff options
author | Owen W. Taylor <otaylor@fishsoup.net> | 2015-03-12 16:57:14 -0400 |
---|---|---|
committer | Owen W. Taylor <otaylor@fishsoup.net> | 2015-03-12 16:59:46 -0400 |
commit | 1b6e7f17a1dc3ae5c8c8a23248a6613e2f157edc (patch) | |
tree | 09fa567532e99a8d2d0dcda1455464bfc8b132b7 | |
parent | 612e669d5d8b52fc929b2c05ed32c8eab32330c1 (diff) | |
download | git-bz-1b6e7f17a1dc3ae5c8c8a23248a6613e2f157edc.tar.gz |
Refer to python2 in the shebang line
Reference https://www.python.org/dev/peps/pep-0394/ - although /usr/bin/python
is SUPPOSED to be python2, apps that depend on python2 should specify that
explicitly to accomodate Arch Linux and the future.
https://bugzilla.gnome.org/show_bug.cgi?id=746071
-rwxr-xr-x | git-bz | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/python2 # -*- coding: utf-8 -*- # # git-bz - git subcommand to integrate with bugzilla |