We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 382241f commit 804501aCopy full SHA for 804501a
docs/conf.py
@@ -56,8 +56,14 @@
56
57
# General information about the project.
58
project = "Adafruit ServoKit Library"
59
+creation_year = "2018"
60
current_year = str(datetime.datetime.now().year)
-copyright = current_year + " Kattni Rembor"
61
+year_duration = (
62
+ current_year
63
+ if current_year == creation_year
64
+ else creation_year + " - " + current_year
65
+)
66
+copyright = year_duration + " Kattni Rembor"
67
author = "Kattni Rembor"
68
69
# The version info for the project you're documenting, acts as replacement for
0 commit comments