From 5bf3a94a9c3374e34bf66fe5b1725ff9b49a1f3c Mon Sep 17 00:00:00 2001 From: Christian Heimes Date: Tue, 19 Jan 2016 14:37:52 +0100 Subject: Remove #!python shebang from non-executables A lot of Python files start with a #!/usr/bin/python shebang although the files are neither executables nor designed as scripts. Shebangs are only required for executable scripts. Without unnecessary shebangs it's a bit easier to track Python 3 porting. --- base/common/python/pki/cli.py | 1 - 1 file changed, 1 deletion(-) (limited to 'base/common/python/pki/cli.py') diff --git a/base/common/python/pki/cli.py b/base/common/python/pki/cli.py index 6c51c2384..3be9cce2e 100644 --- a/base/common/python/pki/cli.py +++ b/base/common/python/pki/cli.py @@ -1,4 +1,3 @@ -#!/usr/bin/python # Authors: # Endi S. Dewata # -- cgit