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 6925b55 commit 0d3c0a7Copy full SHA for 0d3c0a7
docs/conf.py
@@ -64,8 +64,14 @@
64
65
# General information about the project.
66
project = "Adafruit MonsterM4sk Library"
67
+creation_year = "2020"
68
current_year = str(datetime.datetime.now().year)
-copyright = current_year + " Foamyguy"
69
+year_duration = (
70
+ current_year
71
+ if current_year == creation_year
72
+ else creation_year + " - " + current_year
73
+)
74
+copyright = year_duration + " Foamyguy"
75
author = "Foamyguy"
76
77
# The version info for the project you're documenting, acts as replacement for
0 commit comments