Use the current date for the copyright statement

Change-Id: I71326a2e3c2fcf28afa17cbb0b6712d5c9cf1d13
This commit is contained in:
Doug Hellmann 2014-09-10 15:11:29 -04:00
parent bda68073a8
commit 28393d79b7

View File

@ -12,6 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
import datetime
import os
import sys
@ -55,7 +56,7 @@ master_doc = 'index'
# General information about the project.
project = u'swift-specs'
copyright = u'2014, OpenStack Foundation'
copyright = u'%s, OpenStack Foundation' % datetime.date.today().year
# If true, '()' will be appended to :func: etc. cross-reference text.
add_function_parentheses = True