We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6ee2704 commit ecbb272Copy full SHA for ecbb272
docs/conf.py
@@ -44,9 +44,15 @@
44
45
# General information about the project.
46
project = "Adafruit WS2801 Library"
47
+creation_year = "2018"
48
current_year = str(datetime.datetime.now().year)
49
+year_duration = (
50
+ current_year
51
+ if current_year == creation_year
52
+ else creation_year + " - " + current_year
53
+)
54
copyright = (
- current_year + " Damien P. George, Limor Fried & Scott Shawcroft, Kevin J Walters"
55
+ year_duration + " Damien P. George, Limor Fried & Scott Shawcroft, Kevin J Walters"
56
)
57
author = "Damien P. George, Limor Fried & Scott Shawcroft, Kevin J Walters"
58
0 commit comments