Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updates year in footer #586

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@

import sys
import os
import datetime

import coalib

Expand Down Expand Up @@ -49,9 +50,11 @@
# The master toctree document.
master_doc = 'index'

# General information about the project.
# General information about the project.
# Copyright year updated automatically.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think this is unnecessary.

project = 'coala'
copyright = '2017, The coala Developers'
year = datetime.datetime.now().year
copyright = str(year)+', The coala Developers'
author = 'The coala Developers'

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