Skip to content
Merged
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
4 changes: 3 additions & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
# All configuration values have a default; values that are commented out
# serve to show the default.

import datetime
import sys
import os

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

# General information about the project.
project = u'Django Debug Toolbar'
copyright = u'2013, Django Debug Toolbar developers and contributors'
copyright = u'{}, Django Debug Toolbar developers and contributors'
copyright = copyright.format(datetime.date.today().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