Move notesdir default to 'defaults' module

We're going to use this shortly.

Change-Id: I7382ee143c7fb19b19e52ac6c37960242fde8628
This commit is contained in:
Stephen Finucane 2017-06-15 14:33:18 +01:00
parent 208b87691a
commit 18df043b5a
2 changed files with 2 additions and 1 deletions

View File

@ -95,7 +95,7 @@ class Config(object):
_OPTS = {
# The notes subdirectory within the relnotesdir where the
# notes live.
'notesdir': 'notes',
'notesdir': defaults.NOTES_SUBDIR,
# Should pre-release versions be merged into the final release
# of the same number (1.0.0.0a1 notes appear under 1.0.0).

View File

@ -11,3 +11,4 @@
# under the License.
RELEASE_NOTES_SUBDIR = 'releasenotes'
NOTES_SUBDIR = 'notes'