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