1
0
mirror of https://github.com/spl0k/supysonic.git synced 2024-09-19 19:01:03 +00:00

Removing shebang and executable flag from explicit python files

This commit is contained in:
Alban Féron 2020-11-22 16:28:26 +01:00
parent 81d141e540
commit 9a3bdc30ac
No known key found for this signature in database
GPG Key ID: 8CE0313646D16165
39 changed files with 2 additions and 75 deletions

View File

@ -1,5 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python
# coding: utf-8
# This file is part of Supysonic. # This file is part of Supysonic.
# Supysonic is a Python implementation of the Subsonic server API. # Supysonic is a Python implementation of the Subsonic server API.

View File

@ -1,5 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python
# coding: utf-8
# This file is part of Supysonic. # This file is part of Supysonic.
# Supysonic is a Python implementation of the Subsonic server API. # Supysonic is a Python implementation of the Subsonic server API.

2
cgi-bin/server.py Executable file → Normal file
View File

@ -1,5 +1,3 @@
#!/usr/bin/env python
#
# This file is part of Supysonic. # This file is part of Supysonic.
# Supysonic is a Python implementation of the Subsonic server API. # Supysonic is a Python implementation of the Subsonic server API.
# #

View File

@ -1,5 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python
# coding: utf-8
# #
# This file is part of Supysonic. # This file is part of Supysonic.
# Supysonic is a Python implementation of the Subsonic server API. # Supysonic is a Python implementation of the Subsonic server API.
@ -13,5 +12,4 @@ from supysonic.web import create_application
app = create_application() app = create_application()
if app: if app:
CGIHandler().run(app) CGIHandler().run(app)

View File

@ -1,5 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python
# coding: utf-8
# #
# This file is part of Supysonic. # This file is part of Supysonic.
# Supysonic is a Python implementation of the Subsonic server API. # Supysonic is a Python implementation of the Subsonic server API.
@ -13,5 +12,4 @@ from supysonic.web import create_application
app = create_application() app = create_application()
if app: if app:
WSGIServer(app, bindAddress = '/path/to/fcgi.sock').run() WSGIServer(app, bindAddress = "/path/to/fcgi.sock").run()

View File

@ -1,5 +1,3 @@
# coding: utf-8
#
# This file is part of Supysonic. # This file is part of Supysonic.
# Supysonic is a Python implementation of the Subsonic server API. # Supysonic is a Python implementation of the Subsonic server API.
# #
@ -9,4 +7,3 @@
from supysonic.web import create_application from supysonic.web import create_application
application = create_application() application = create_application()

2
setup.py Executable file → Normal file
View File

@ -1,5 +1,3 @@
#!/usr/bin/env python
#
# This file is part of Supysonic. # This file is part of Supysonic.
# Supysonic is a Python implementation of the Subsonic server API. # Supysonic is a Python implementation of the Subsonic server API.
# #

0
supysonic/cli.py Executable file → Normal file
View File

2
supysonic/daemon/__main__.py Executable file → Normal file
View File

@ -1,5 +1,3 @@
#!/usr/bin/env python
# This file is part of Supysonic. # This file is part of Supysonic.
# Supysonic is a Python implementation of the Subsonic server API. # Supysonic is a Python implementation of the Subsonic server API.
# #

0
supysonic/db.py Executable file → Normal file
View File

View File

@ -1,5 +1,3 @@
#!/usr/bin/env python
#
# This file is part of Supysonic. # This file is part of Supysonic.
# Supysonic is a Python implementation of the Subsonic server API. # Supysonic is a Python implementation of the Subsonic server API.
# #

View File

@ -1,5 +1,3 @@
#!/usr/bin/env python
#
# This file is part of Supysonic. # This file is part of Supysonic.
# Supysonic is a Python implementation of the Subsonic server API. # Supysonic is a Python implementation of the Subsonic server API.
# #

View File

@ -1,5 +1,3 @@
#!/usr/bin/env python
#
# This file is part of Supysonic. # This file is part of Supysonic.
# Supysonic is a Python implementation of the Subsonic server API. # Supysonic is a Python implementation of the Subsonic server API.
# #

View File

@ -1,5 +1,3 @@
#!/usr/bin/env python
#
# This file is part of Supysonic. # This file is part of Supysonic.
# Supysonic is a Python implementation of the Subsonic server API. # Supysonic is a Python implementation of the Subsonic server API.
# #

View File

@ -1,5 +1,3 @@
#!/usr/bin/env python
#
# This file is part of Supysonic. # This file is part of Supysonic.
# Supysonic is a Python implementation of the Subsonic server API. # Supysonic is a Python implementation of the Subsonic server API.
# #

View File

@ -1,5 +1,3 @@
#!/usr/bin/env python
#
# This file is part of Supysonic. # This file is part of Supysonic.
# Supysonic is a Python implementation of the Subsonic server API. # Supysonic is a Python implementation of the Subsonic server API.
# #

View File

@ -1,5 +1,3 @@
#!/usr/bin/env python
#
# This file is part of Supysonic. # This file is part of Supysonic.
# Supysonic is a Python implementation of the Subsonic server API. # Supysonic is a Python implementation of the Subsonic server API.
# #

View File

@ -1,5 +1,3 @@
#!/usr/bin/env python
#
# This file is part of Supysonic. # This file is part of Supysonic.
# Supysonic is a Python implementation of the Subsonic server API. # Supysonic is a Python implementation of the Subsonic server API.
# #

View File

@ -1,5 +1,3 @@
#!/usr/bin/env python
#
# This file is part of Supysonic. # This file is part of Supysonic.
# Supysonic is a Python implementation of the Subsonic server API. # Supysonic is a Python implementation of the Subsonic server API.
# #

View File

@ -1,5 +1,3 @@
#!/usr/bin/env python
#
# This file is part of Supysonic. # This file is part of Supysonic.
# Supysonic is a Python implementation of the Subsonic server API. # Supysonic is a Python implementation of the Subsonic server API.
# #

View File

@ -1,5 +1,3 @@
#!/usr/bin/env python
#
# This file is part of Supysonic. # This file is part of Supysonic.
# Supysonic is a Python implementation of the Subsonic server API. # Supysonic is a Python implementation of the Subsonic server API.
# #

View File

@ -1,5 +1,3 @@
#!/usr/bin/env python
#
# This file is part of Supysonic. # This file is part of Supysonic.
# Supysonic is a Python implementation of the Subsonic server API. # Supysonic is a Python implementation of the Subsonic server API.
# #

View File

@ -1,5 +1,3 @@
#!/usr/bin/env python
#
# This file is part of Supysonic. # This file is part of Supysonic.
# Supysonic is a Python implementation of the Subsonic server API. # Supysonic is a Python implementation of the Subsonic server API.
# #

View File

@ -1,5 +1,3 @@
#!/usr/bin/env python
#
# This file is part of Supysonic. # This file is part of Supysonic.
# Supysonic is a Python implementation of the Subsonic server API. # Supysonic is a Python implementation of the Subsonic server API.
# #

View File

@ -1,5 +1,3 @@
#!/usr/bin/env python
#
# This file is part of Supysonic. # This file is part of Supysonic.
# Supysonic is a Python implementation of the Subsonic server API. # Supysonic is a Python implementation of the Subsonic server API.
# #

View File

@ -1,5 +1,3 @@
#!/usr/bin/env python
#
# This file is part of Supysonic. # This file is part of Supysonic.
# Supysonic is a Python implementation of the Subsonic server API. # Supysonic is a Python implementation of the Subsonic server API.
# #

View File

@ -1,5 +1,3 @@
#!/usr/bin/env python
#
# This file is part of Supysonic. # This file is part of Supysonic.
# Supysonic is a Python implementation of the Subsonic server API. # Supysonic is a Python implementation of the Subsonic server API.
# #

View File

@ -1,5 +1,3 @@
#!/usr/bin/env python
#
# This file is part of Supysonic. # This file is part of Supysonic.
# Supysonic is a Python implementation of the Subsonic server API. # Supysonic is a Python implementation of the Subsonic server API.
# #

View File

@ -1,5 +1,3 @@
#!/usr/bin/env python
#
# This file is part of Supysonic. # This file is part of Supysonic.
# Supysonic is a Python implementation of the Subsonic server API. # Supysonic is a Python implementation of the Subsonic server API.
# #

View File

@ -1,5 +1,3 @@
#!/usr/bin/env python
#
# This file is part of Supysonic. # This file is part of Supysonic.
# Supysonic is a Python implementation of the Subsonic server API. # Supysonic is a Python implementation of the Subsonic server API.
# #

View File

@ -1,5 +1,3 @@
#!/usr/bin/env python
#
# This file is part of Supysonic. # This file is part of Supysonic.
# Supysonic is a Python implementation of the Subsonic server API. # Supysonic is a Python implementation of the Subsonic server API.
# #

View File

@ -1,5 +1,3 @@
#!/usr/bin/env python
#
# This file is part of Supysonic. # This file is part of Supysonic.
# Supysonic is a Python implementation of the Subsonic server API. # Supysonic is a Python implementation of the Subsonic server API.
# #

View File

@ -1,5 +1,3 @@
#!/usr/bin/env python
#
# This file is part of Supysonic. # This file is part of Supysonic.
# Supysonic is a Python implementation of the Subsonic server API. # Supysonic is a Python implementation of the Subsonic server API.
# #

View File

@ -1,5 +1,3 @@
#!/usr/bin/env python
#
# This file is part of Supysonic. # This file is part of Supysonic.
# Supysonic is a Python implementation of the Subsonic server API. # Supysonic is a Python implementation of the Subsonic server API.
# #

View File

@ -1,5 +1,3 @@
#!/usr/bin/env python
#
# This file is part of Supysonic. # This file is part of Supysonic.
# Supysonic is a Python implementation of the Subsonic server API. # Supysonic is a Python implementation of the Subsonic server API.
# #

View File

@ -1,5 +1,3 @@
#!/usr/bin/env python
#
# This file is part of Supysonic. # This file is part of Supysonic.
# Supysonic is a Python implementation of the Subsonic server API. # Supysonic is a Python implementation of the Subsonic server API.
# #

View File

@ -1,5 +1,3 @@
#!/usr/bin/env python
#
# This file is part of Supysonic. # This file is part of Supysonic.
# Supysonic is a Python implementation of the Subsonic server API. # Supysonic is a Python implementation of the Subsonic server API.
# #

View File

@ -1,5 +1,3 @@
#!/usr/bin/env python
#
# This file is part of Supysonic. # This file is part of Supysonic.
# Supysonic is a Python implementation of the Subsonic server API. # Supysonic is a Python implementation of the Subsonic server API.
# #

View File

@ -1,5 +1,3 @@
#!/usr/bin/env python
#
# This file is part of Supysonic. # This file is part of Supysonic.
# Supysonic is a Python implementation of the Subsonic server API. # Supysonic is a Python implementation of the Subsonic server API.
# #