misc: apply double-quote-string-fixer (#79788)

This commit is contained in:
Valentin Deniaud 2023-08-16 11:53:30 +02:00
parent c6cec4fdae
commit 26fda56568
3 changed files with 4 additions and 4 deletions

View File

@ -2,8 +2,8 @@
import os
import sys
if __name__ == "__main__":
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "scrutiny.settings")
if __name__ == '__main__':
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'scrutiny.settings')
from django.core.management import execute_from_command_line

View File

@ -8,7 +8,7 @@ https://docs.djangoproject.com/en/1.6/howto/deployment/wsgi/
"""
import os
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "scrutiny.settings")
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'scrutiny.settings')
from django.core.wsgi import get_wsgi_application

View File

@ -99,7 +99,7 @@ setup(
license='AGPLv3',
description='',
author="Entr'ouvert",
author_email="info@entrouvert.com",
author_email='info@entrouvert.com',
packages=find_packages(os.path.dirname(__file__) or '.'),
scripts=['manage.py'],
include_package_data=True,