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 4415346 commit e3519ecCopy full SHA for e3519ec
docs/conf.py
@@ -51,8 +51,14 @@
51
52
# General information about the project.
53
project = "Adafruit CircuitPython Simple Text Display Library"
54
+creation_year = "2021"
55
current_year = str(datetime.datetime.now().year)
-copyright = current_year + " Kattni Rembor"
56
+year_duration = (
57
+ current_year
58
+ if current_year == creation_year
59
+ else creation_year + " - " + current_year
60
+)
61
+copyright = year_duration + " Kattni Rembor"
62
author = "Kattni Rembor"
63
64
# The version info for the project you're documenting, acts as replacement for
0 commit comments