We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 11994a0 commit c8e82b9Copy full SHA for c8e82b9
docs/conf.py
@@ -52,8 +52,14 @@
52
53
# General information about the project.
54
project = "Adafruit LSM6DS Library"
55
+creation_year = "2019"
56
current_year = str(datetime.datetime.now().year)
-copyright = current_year + " Bryan Siepert"
57
+year_duration = (
58
+ current_year
59
+ if current_year == creation_year
60
+ else creation_year + " - " + current_year
61
+)
62
+copyright = year_duration + " Bryan Siepert"
63
author = "Bryan Siepert"
64
65
# The version info for the project you're documenting, acts as replacement for
0 commit comments