From: Oleg Broytman Date: Wed, 26 Apr 2017 18:12:07 +0000 (+0300) Subject: Use this year for copyright X-Git-Tag: 0.0.15~2 X-Git-Url: https://git.phdru.name/?p=m_librarian.git;a=commitdiff_plain;h=d1634730b134f57c60701edf6a3721adae88d15e Use this year for copyright --- diff --git a/docs-ru/conf.py b/docs-ru/conf.py index 3b46ef6..4d9a61c 100644 --- a/docs-ru/conf.py +++ b/docs-ru/conf.py @@ -12,6 +12,7 @@ # All configuration values have a default; values that are commented out # serve to show the default. +from datetime import date import sys import os @@ -47,7 +48,7 @@ master_doc = 'index' # General information about the project. project = u'm_Librarian' -copyright = u'2015-2017, Oleg Broytman' +copyright = u'2015-%d, Oleg Broytman' % date.today().year # The version info for the project you're documenting, acts as replacement for # |version| and |release|, also used in various other places throughout the diff --git a/docs/conf.py b/docs/conf.py index 1918113..a339a37 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -12,6 +12,7 @@ # All configuration values have a default; values that are commented out # serve to show the default. +from datetime import date import sys import os @@ -47,7 +48,7 @@ master_doc = 'index' # General information about the project. project = u'm_Librarian' -copyright = u'2015-2017, Oleg Broytman' +copyright = u'2015-%d, Oleg Broytman' % date.today().year # The version info for the project you're documenting, acts as replacement for # |version| and |release|, also used in various other places throughout the