Add default global variables for licensing information

This commit is contained in:
Adam J. Stewart 2016-04-04 11:30:13 -05:00
parent 240c0643f2
commit 8cba8d6d1d

View File

@ -374,6 +374,19 @@ def __init__(self, spec):
if not hasattr(self, 'list_depth'):
self.list_depth = 1
# Set default licensing information
if not hasattr(self, 'license_required'):
self.license_required = False
if not hasattr(self, 'license_files'):
self.license_files = []
if not hasattr(self, 'license_vars'):
self.license_vars = []
if not hasattr(self, 'license_url'):
self.license_url = None
# Set up some internal variables for timing.
self._fetch_time = 0.0
self._total_time = 0.0