From c5f878330c84c38fb90f4b5fba37ed44dafea7ff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lubom=C3=ADr=20Sedl=C3=A1=C5=99?= Date: Wed, 21 Sep 2016 14:55:02 +0200 Subject: [PATCH] Remove shebangs from non-executable files MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Some modules can be executed as a sort-of test. However, the files do not have executable bit set, so there is no need for them to have shebangs. If someone wants to call them directly, they should do so via python. Signed-off-by: Lubomír Sedlář --- pungi/multilib.py | 2 -- pungi/wrappers/variants.py | 2 -- 2 files changed, 4 deletions(-) diff --git a/pungi/multilib.py b/pungi/multilib.py index 1668c9ca..3bf9bfd9 100755 --- a/pungi/multilib.py +++ b/pungi/multilib.py @@ -1,7 +1,5 @@ -#!/usr/bin/env python # -*- coding: utf-8 -*- - # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; version 2 of the License. diff --git a/pungi/wrappers/variants.py b/pungi/wrappers/variants.py index 9530d924..fb2cdb74 100755 --- a/pungi/wrappers/variants.py +++ b/pungi/wrappers/variants.py @@ -1,7 +1,5 @@ -#!/usr/bin/env python # -*- coding: utf-8 -*- - # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; version 2 of the License.