From 26fda565683aae587125f48aef0157c1cfed6b77 Mon Sep 17 00:00:00 2001 From: Valentin Deniaud Date: Wed, 16 Aug 2023 11:53:30 +0200 Subject: [PATCH] misc: apply double-quote-string-fixer (#79788) --- manage.py | 4 ++-- scrutiny/wsgi.py | 2 +- setup.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/manage.py b/manage.py index 7ef5558..aa60ff9 100755 --- a/manage.py +++ b/manage.py @@ -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 diff --git a/scrutiny/wsgi.py b/scrutiny/wsgi.py index 6a46f3b..aed3246 100644 --- a/scrutiny/wsgi.py +++ b/scrutiny/wsgi.py @@ -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 diff --git a/setup.py b/setup.py index 1854803..74ac815 100755 --- a/setup.py +++ b/setup.py @@ -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,