We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ca434eb commit 4605705Copy full SHA for 4605705
docs/conf.py
@@ -6,6 +6,7 @@
6
7
import os
8
import sys
9
+import datetime
10
11
sys.path.insert(0, os.path.abspath(".."))
12
@@ -40,7 +41,8 @@
40
41
42
# General information about the project.
43
project = "Adafruit motor Library"
-copyright = "2017 Scott Shawcroft"
44
+current_year = str(datetime.datetime.now().year)
45
+copyright = current_year + " Scott Shawcroft"
46
author = "Scott Shawcroft"
47
48
# Ignore imports of these modules, which sphinx will not know about.
0 commit comments