From 053170bab9439e360e9b4c894c023ef4f9febe78 Mon Sep 17 00:00:00 2001 From: Jonathon Reinhart Date: Sat, 6 Feb 2016 22:57:51 -0500 Subject: [PATCH] Remove she-bang and x bit from scuba/__main__.py This can already no longer be directly executed as a script, so there's no point in either of these. It can however, be executed as a module, e.g. $ python -m scuba, so leave the 'if __name__'... at the end of the file. --- scuba/__main__.py | 2 -- 1 file changed, 2 deletions(-) mode change 100755 => 100644 scuba/__main__.py diff --git a/scuba/__main__.py b/scuba/__main__.py old mode 100755 new mode 100644 index 8a91cec7..84b4600a --- a/scuba/__main__.py +++ b/scuba/__main__.py @@ -1,5 +1,3 @@ -#!/usr/bin/env python2 - # SCUBA - Simple Container-Utilizing Build Architecture # (C) 2015 Jonathon Reinhart # https://github.com/JonathonReinhart/scuba