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

This commit is contained in:
Valentin Deniaud 2023-08-16 11:52:27 +02:00
parent 5b3adf855f
commit 4dceb85085
3 changed files with 3 additions and 3 deletions

View File

@ -49,4 +49,4 @@ def export_as_csv(modeladmin, request, queryset):
return response
export_as_csv.short_description = _("Export CSV file")
export_as_csv.short_description = _('Export CSV file')

View File

@ -116,7 +116,7 @@ setup(
url='http://dev.entrouvert.org/projects/django-journal/',
download_url='http://repos.entrouvert.org/django-journal.git/',
author="Entr'ouvert",
author_email="info@entrouvert.com",
author_email='info@entrouvert.com',
packages=find_packages(os.path.dirname(__file__) or '.'),
include_package_data=True,
cmdclass={

View File

@ -9,7 +9,7 @@ DATABASES = {
'error': {'ENGINE': 'django.db.backends.postgresql_psycopg2', 'NAME': '_test'},
}
SECRET_KEY = "django_tests_secret_key"
SECRET_KEY = 'django_tests_secret_key'
PASSWORD_HASHERS = ('django.contrib.auth.hashers.MD5PasswordHasher',)
ROOT_URLCONF = 'test_urls'