removed the shebang from the top of a few files

The #!/usr/bin/env python should be used for scripts
not for module files. This causes rpmlint to get angry
about files being non executable. For example:

python-pyvmomi.noarch: E: non-executable-script /usr/lib/python2.7/site-packages/pyVmomi/ManagedMethodExecutorHelper.py 0644L /usr/bin/env
python-pyvmomi.noarch: E: non-executable-script /usr/lib/python2.7/site-packages/pyVmomi/Iso8601.py 0644L /usr/bin/env
python-pyvmomi.noarch: E: non-executable-script /usr/lib/python2.7/site-packages/pyVmomi/DynamicTypeManagerHelper.py 0644L /usr/bin/env

This change fixes that problem.
This commit is contained in:
Michael Rice 2014-08-31 18:49:22 -05:00
parent f4c046fc51
commit 8507ed586a
3 changed files with 0 additions and 6 deletions

@ -1,5 +1,3 @@
#!/usr/bin/env python
# VMware vSphere Python SDK
# Copyright (c) 2008-2014 VMware, Inc. All Rights Reserved.
#

@ -1,5 +1,3 @@
#!/usr/bin/env python
# VMware vSphere Python SDK
# Copyright (c) 2008-2014 VMware, Inc. All Rights Reserved.
#

@ -1,5 +1,3 @@
#!/usr/bin/env python
# VMware vSphere Python SDK
# Copyright (c) 2008-2014 VMware, Inc. All Rights Reserved.
#