From 7c3505cead6dd47d9c7a648bff16149a19ffe00e Mon Sep 17 00:00:00 2001 From: Jeremy Stanley Date: Wed, 28 Feb 2018 11:04:54 +0000 Subject: [PATCH] Remove unused shebang lines The package for this installs an entrypoint wrapper, so there's little point in declaring an interpreter in individual modules. Further, the existing shebangs misleadingly ran python when we only intend to support python3. Just remove them to avoid confusion. Change-Id: I62e761719dbf6c357d5b1564ff21b5722b99722c --- ptgbot/bot.py | 2 -- ptgbot/db.py | 2 -- 2 files changed, 4 deletions(-) diff --git a/ptgbot/bot.py b/ptgbot/bot.py index 16b9651..238d179 100644 --- a/ptgbot/bot.py +++ b/ptgbot/bot.py @@ -1,5 +1,3 @@ -#! /usr/bin/env python - # Copyright 2011, 2013 OpenStack Foundation # Copyright 2012 Hewlett-Packard Development Company, L.P. # diff --git a/ptgbot/db.py b/ptgbot/db.py index a1bc47b..ba16c2d 100644 --- a/ptgbot/db.py +++ b/ptgbot/db.py @@ -1,5 +1,3 @@ -#! /usr/bin/env python - # Copyright (c) 2017, Thierry Carrez # # Licensed under the Apache License, Version 2.0 (the "License");