We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6f672a2 commit 9f23b46Copy full SHA for 9f23b46
docs/conf.py
@@ -67,8 +67,14 @@
67
68
# General information about the project.
69
project = "Adafruit turtle Library"
70
+creation_year = "2019"
71
current_year = str(datetime.datetime.now().year)
-copyright = current_year + " Adafruit"
72
+year_duration = (
73
+ current_year
74
+ if current_year == creation_year
75
+ else creation_year + " - " + current_year
76
+)
77
+copyright = year_duration + " Adafruit"
78
author = "Adafruit"
79
80
# The version info for the project you're documenting, acts as replacement for
0 commit comments