We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f0e8511 commit e9331b7Copy full SHA for e9331b7
docs/conf.py
@@ -59,8 +59,14 @@
59
60
# General information about the project.
61
project = "Adafruit PyBadger Library"
62
+creation_year = "2019"
63
current_year = str(datetime.datetime.now().year)
-copyright = current_year + " Kattni Rembor"
64
+year_duration = (
65
+ current_year
66
+ if current_year == creation_year
67
+ else creation_year + " - " + current_year
68
+)
69
+copyright = year_duration + " Kattni Rembor"
70
author = "Kattni Rembor"
71
72
# The version info for the project you're documenting, acts as replacement for
0 commit comments