Skip to content

Commit

Permalink
fix: hardcoded year removed from copyright (#2277)
Browse files Browse the repository at this point in the history
  • Loading branch information
CodeWithEmad authored Oct 23, 2024
1 parent 1d27eb4 commit a374c14
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
import sys
import os
import sphinx_rtd_theme
from datetime import datetime

# If extensions (or modules to document with autodoc) are in another directory,
# add these directories to sys.path here. If the directory is relative to the
Expand Down Expand Up @@ -55,7 +56,8 @@

# General information about the project.
project = u'Flask-AppBuilder'
copyright = u'2013, Daniel Vaz Gaspar'
current_year = datetime.now().year
copyright = u'{}, Daniel Vaz Gaspar'.format(current_year)

# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
Expand Down

0 comments on commit a374c14

Please sign in to comment.