remove the _ prefix from '_independent' so the series name is always consistent

Change-Id: I6ca5f88eeedbd5c01cdcac4ff612891862b5c438
Signed-off-by: Doug Hellmann <doug@doughellmann.com>
This commit is contained in:
Doug Hellmann 2018-04-20 11:23:10 -04:00
parent de52a1fefa
commit 276f13c72e

View File

@ -137,7 +137,7 @@ class Deliverables(object):
@staticmethod @staticmethod
def _series_from_filename(filename): def _series_from_filename(filename):
return os.path.basename(os.path.dirname(filename)) return os.path.basename(os.path.dirname(filename)).lstrip('_')
@staticmethod @staticmethod
def _deliverable_from_filename(filename): def _deliverable_from_filename(filename):