Make __init__.py work on old Python

This commit is contained in:
Florian Bruhin 2024-06-01 14:09:53 +02:00
parent 56f14fba2d
commit af2d151175
1 changed files with 1 additions and 1 deletions

View File

@ -10,7 +10,7 @@ import datetime
_year = datetime.date.today().year
__author__ = "Florian Bruhin"
__copyright__ = f"Copyright 2013-{_year} Florian Bruhin (The Compiler)"
__copyright__ = "Copyright 2013-{} Florian Bruhin (The Compiler)".format(_year)
__license__ = "GPL"
__maintainer__ = __author__
__email__ = "mail@qutebrowser.org"