We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 02d3870 commit 5f8c103Copy full SHA for 5f8c103
docs/conf.py
@@ -63,8 +63,14 @@
63
64
# General information about the project.
65
project = "Adafruit CircuitPython MacroPad Library"
66
+creation_year = "2021"
67
current_year = str(datetime.datetime.now().year)
-copyright = current_year + " Kattni Rembor"
68
+year_duration = (
69
+ current_year
70
+ if current_year == creation_year
71
+ else creation_year + " - " + current_year
72
+)
73
+copyright = year_duration + " Kattni Rembor"
74
author = "Kattni Rembor"
75
76
# The version info for the project you're documenting, acts as replacement for
0 commit comments