Skip to content

Commit

Permalink
docs: Update copyright info.
Browse files Browse the repository at this point in the history
Copyright year(s) should now be 2017-2018.

Update conf.py so that Sphinx generates doc
copyrights that end with the current year.
  • Loading branch information
d-bohls committed Mar 5, 2018
1 parent f26dde4 commit fad6e51
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2017, National Instruments Corp.
Copyright (c) 2017-2018, National Instruments Corp.

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
Expand Down
3 changes: 2 additions & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
# add these directories to sys.path here. If the directory is relative to the
# documentation root, use os.path.abspath to make it absolute, like shown here.
#
from datetime import datetime
import os
import re
import sys
Expand Down Expand Up @@ -50,8 +51,8 @@

# General information about the project.
project = u'nixnet'
copyright = u'2018, National Instruments'
author = u'National Instruments'
copyright = u'2017-{}, {}'.format(datetime.now().year, author)

# 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

0 comments on commit fad6e51

Please sign in to comment.