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 b24677a commit b9ccbbeCopy full SHA for b9ccbbe
docs/conf.py
@@ -55,8 +55,14 @@
55
56
# General information about the project.
57
project = "Adafruit FeatherWing Library"
58
+creation_year = "2017"
59
current_year = str(datetime.datetime.now().year)
-copyright = current_year + " Scott Shawcroft"
60
+year_duration = (
61
+ current_year
62
+ if current_year == creation_year
63
+ else creation_year + " - " + current_year
64
+)
65
+copyright = year_duration + " Scott Shawcroft"
66
author = "Scott Shawcroft"
67
68
# The version info for the project you're documenting, acts as replacement for
0 commit comments