We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1d9efc3 commit 2fa9b0aCopy full SHA for 2fa9b0a
docs/conf.py
@@ -42,8 +42,14 @@
42
43
# General information about the project.
44
project = "Adafruit GC_IOT_CORE Library"
45
+creation_year = "2019"
46
current_year = str(datetime.datetime.now().year)
-copyright = current_year + " Brent Rubell"
47
+year_duration = (
48
+ current_year
49
+ if current_year == creation_year
50
+ else creation_year + " - " + current_year
51
+)
52
+copyright = year_duration + " Brent Rubell"
53
author = "Brent Rubell"
54
55
# The version info for the project you're documenting, acts as replacement for
0 commit comments