From 316c6f5256cc23155e38b3442071903b49e549e9 Mon Sep 17 00:00:00 2001 From: Monty Taylor Date: Sat, 16 Nov 2013 08:52:46 -0500 Subject: [PATCH] Clean up the copyright header OpenStack LLC isn't a thing, all of its stuff was transferred to the OpenStack Foundation. Also, this is not an executable script, so there is no need to have the shebang line. Change-Id: I1b31a275e14ebc11a61b02788ffe5c0945f63bf0 --- pypi_mirror/cmd/run_mirror.py | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/pypi_mirror/cmd/run_mirror.py b/pypi_mirror/cmd/run_mirror.py index b706b15..31ad554 100644 --- a/pypi_mirror/cmd/run_mirror.py +++ b/pypi_mirror/cmd/run_mirror.py @@ -1,7 +1,5 @@ -#! /usr/bin/env python -# Copyright (C) 2011 OpenStack, LLC. +# Copyright (C) 2011-2013 OpenStack Foundation # Copyright (C) 2013 Hewlett-Packard Development Company, L.P. -# Copyright (C) 2013 OpenStack Foundation # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -434,7 +432,3 @@ class Mirror(object): def main(): mb = Mirror() mb.run() - - -if __name__ == "__main__": - main()