Skip to content

Commit

Permalink
update copyright info
Browse files Browse the repository at this point in the history
  • Loading branch information
markdboyd committed Jan 31, 2024
1 parent cee1841 commit fd34b05
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,13 @@
#
import os
import sys
import datetime

sys.path.insert(0, os.path.abspath(os.path.join("..", "example")))
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "example.settings")

today = datetime.date.today()
year = today.year

import django

Expand Down Expand Up @@ -50,7 +53,8 @@

# General information about the project.
project = "cg-django-uaa"
copyright = "2021, cloud.gov"

copyright = f'{year}, cloud.gov'
author = "cloud.gov"

# The version info for the project you're documenting, acts as replacement for
Expand Down

0 comments on commit fd34b05

Please sign in to comment.