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 290496c commit e3aa0c3Copy full SHA for e3aa0c3
docs/conf.py
@@ -53,8 +53,14 @@
53
54
# General information about the project.
55
project = "Adafruit SSD1305 Library"
56
+creation_year = "2019"
57
current_year = str(datetime.datetime.now().year)
-copyright = current_year + " Bryan Siepert"
58
+year_duration = (
59
+ current_year
60
+ if current_year == creation_year
61
+ else creation_year + " - " + current_year
62
+)
63
+copyright = year_duration + " Bryan Siepert"
64
author = "Bryan Siepert"
65
66
# The version info for the project you're documenting, acts as replacement for
0 commit comments