Make __init__.py work on old Python
This commit is contained in:
parent
56f14fba2d
commit
af2d151175
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Reference in New Issue