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

This commit is contained in:
Zuul 2018-04-25 20:36:12 +00:00 committed by Gerrit Code Review
commit dc321bb438

View File

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