Skip to content

Commit

Permalink
use current year for date of copyright
Browse files Browse the repository at this point in the history
  • Loading branch information
Frank Morgner committed Jul 8, 2014
1 parent 83c3d3d commit 9704597
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@

import sys, os, breathe, sphinx_bootstrap_theme
from sphinxcontrib.doxylink import doxylink
from datetime import date

os.system("make doc -C npa")
os.system("make doc -C virtualsmartcard")
Expand Down Expand Up @@ -51,7 +52,7 @@

# General information about the project.
project = u'Virtual Smart Card Architecture'
copyright = u'2009-2013 by Dominik Oepen and Frank Morgner'
copyright = u'2009-%d by Dominik Oepen and Frank Morgner' % 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 All @@ -60,8 +61,7 @@
# The short X.Y version.
#version = '0.7'
# The full version, including alpha/beta/rc tags.
import datetime
release = '%s' % datetime.date.today()
release = '%s' % date.today()

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down

0 comments on commit 9704597

Please sign in to comment.