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 76cae39 commit 596605fCopy full SHA for 596605f
docs/conf.py
@@ -52,8 +52,14 @@
52
53
# General information about the project.
54
project = "Adafruit AHTx0 Library"
55
+creation_year = "2020"
56
current_year = str(datetime.datetime.now().year)
-copyright = current_year + " Kattni Rembor"
57
+year_duration = (
58
+ current_year
59
+ if current_year == creation_year
60
+ else creation_year + " - " + current_year
61
+)
62
+copyright = year_duration + " Kattni Rembor"
63
author = "Kattni Rembor"
64
65
# The version info for the project you're documenting, acts as replacement for
0 commit comments