Gentoo Archives: gentoo-catalyst

From: Mike Frysinger <vapier@g.o>
To: gentoo-catalyst@l.g.o
Subject: [gentoo-catalyst] [PATCH] catalyst: switch to common python entry
Date: Mon, 09 Nov 2015 21:05:41
Message-Id: 1447103134-18858-1-git-send-email-vapier@gentoo.org
1 Since the catalyst code base supports py2 & py3, we no longer need to
2 hardcode py2 in the shebang.
3 ---
4 bin/catalyst | 2 +-
5 1 file changed, 1 insertion(+), 1 deletion(-)
6
7 diff --git a/bin/catalyst b/bin/catalyst
8 index 1557ab8..24122b2 100755
9 --- a/bin/catalyst
10 +++ b/bin/catalyst
11 @@ -1,4 +1,4 @@
12 -#!/usr/bin/python2 -OO
13 +#!/usr/bin/python -OO
14
15 # Maintained in full by:
16 # Catalyst Team <catalyst@g.o>
17 --
18 2.6.2

Replies