We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent af19569 commit 7a3bdd0Copy full SHA for 7a3bdd0
docs/conf.py
@@ -44,8 +44,14 @@
44
45
# General information about the project.
46
project = "Adafruit SHARPMemoryDisplay Library"
47
+creation_year = "2018"
48
current_year = str(datetime.datetime.now().year)
-copyright = current_year + " ladyada"
49
+year_duration = (
50
+ current_year
51
+ if current_year == creation_year
52
+ else creation_year + " - " + current_year
53
+)
54
+copyright = year_duration + " ladyada"
55
author = "ladyada"
56
57
# The version info for the project you're documenting, acts as replacement for
0 commit comments