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

This commit is contained in:
Valentin Deniaud 2023-08-16 10:31:30 +02:00
parent d33d19190a
commit 8776825bdb
1 changed files with 7 additions and 7 deletions

View File

@ -46,7 +46,7 @@ class eo_sdist(_sdist):
sub_commands = [('compile_translations', None)] + _build.sub_commands
def run(self):
print("creating VERSION file")
print('creating VERSION file')
if os.path.exists('VERSION'):
os.remove('VERSION')
version = get_version()
@ -54,7 +54,7 @@ class eo_sdist(_sdist):
version_file.write(version)
version_file.close()
_sdist.run(self)
print("removing VERSION file")
print('removing VERSION file')
if os.path.exists('VERSION'):
os.remove('VERSION')
@ -93,14 +93,14 @@ def get_version():
setup(
name="django-mellon",
name='django-mellon',
version=get_version(),
license="AGPLv3 or later",
description="SAML 2.0 authentication for Django",
license='AGPLv3 or later',
description='SAML 2.0 authentication for Django',
long_description=open('README').read(),
url="http://dev.entrouvert.org/projects/django-mellon/",
url='http://dev.entrouvert.org/projects/django-mellon/',
author="Entr'ouvert",
author_email="info@entrouvert.org",
author_email='info@entrouvert.org',
include_package_data=True,
packages=find_packages(),
install_requires=[