We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cd708ee commit 846871dCopy full SHA for 846871d
1 file changed
source/conf.py
@@ -11,9 +11,11 @@
11
# All configuration values have a default; values that are commented out
12
# serve to show the default.
13
14
-import sys, os
+from datetime import date
15
+import os
16
from os.path import join
17
import subprocess
18
+import sys
19
20
# on_rtd is whether we are on readthedocs.org, this line of code grabbed from docs.readthedocs.org
21
# https://docs.readthedocs.io/en/latest/faq.html?highlight=environ#how-do-i-change-behavior-for-read-the-docs
@@ -55,7 +57,7 @@
55
57
56
58
# General information about the project.
59
project = "Python GTK+ 3 Tutorial"
-copyright = "2011, The PyGObject Community"
60
+copyright = "2011-%s, The PyGObject Community" % date.today().year
61
62
locale_dirs = ["../translations/locale"]
63
0 commit comments