From 35df726aa6b3f3c3284ae1f2976ea02ebd408826 Mon Sep 17 00:00:00 2001 From: Jon Dufresne Date: Sun, 3 Mar 2019 09:22:01 -0800 Subject: [PATCH] Remove shebang and executable bit from chardet/cli/chardetect.py The CLI entry point is installed by setuptools through the console_scripts option. This setuptools feature automatically constructs a file with a shebang and sets the executable bit. The imported file chardet.cli.chardetect doesn't also require this bit. --- chardet/cli/chardetect.py | 1 - 1 file changed, 1 deletion(-) mode change 100755 => 100644 chardet/cli/chardetect.py diff --git a/chardet/cli/chardetect.py b/chardet/cli/chardetect.py old mode 100755 new mode 100644 index f0a4cc5d..9ab62015 --- a/chardet/cli/chardetect.py +++ b/chardet/cli/chardetect.py @@ -1,4 +1,3 @@ -#!/usr/bin/env python """ Script which takes one or more file paths and reports on their detected encodings