From c1d261921b4d1308871335b9f4e82a5d782cedb6 Mon Sep 17 00:00:00 2001 From: Nick Coghlan <@ncoghlan> Date: Thu, 15 Dec 2011 21:13:03 +1000 Subject: [PATCH] If one is going to mark scripts executable, one had best add a shebang line... --- setup.py | 1 + test_contextlib2.py | 1 + 2 files changed, 2 insertions(+) diff --git a/setup.py b/setup.py index 5c9d52f..a30c65c 100755 --- a/setup.py +++ b/setup.py @@ -1,3 +1,4 @@ +#!/usr/bin/env python from distutils.core import setup setup( diff --git a/test_contextlib2.py b/test_contextlib2.py index 10f146c..eb96cf1 100755 --- a/test_contextlib2.py +++ b/test_contextlib2.py @@ -1,3 +1,4 @@ +#!/usr/bin/env python """Unit tests for contextlib.py, and other context managers.""" import sys