We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 259337a commit de016a1Copy full SHA for de016a1
docs/conf.py
@@ -49,8 +49,14 @@
49
50
# General information about the project.
51
project = "Adafruit AzureIoT Library"
52
+creation_year = "2019"
53
current_year = str(datetime.datetime.now().year)
-copyright = current_year + " Brent Rubell, Jim Bennett, Elena Horton"
54
+year_duration = (
55
+ current_year
56
+ if current_year == creation_year
57
+ else creation_year + " - " + current_year
58
+)
59
+copyright = year_duration + " Brent Rubell, Jim Bennett, Elena Horton"
60
author = "Brent Rubell, Jim Bennett, Elena Horton"
61
62
# The version info for the project you're documenting, acts as replacement for
0 commit comments