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