From: Ansgar Burchardt Date: Thu, 23 Oct 2014 18:31:57 +0000 (+0200) Subject: daklib/command.py: Add Cc option. X-Git-Url: https://git.donarmstrong.com/?p=dak.git;a=commitdiff_plain;h=fc3a6f5382af1f10ea08429e1107d97d7c512269 daklib/command.py: Add Cc option. --- diff --git a/daklib/command.py b/daklib/command.py index 73c8d240..867f7e36 100644 --- a/daklib/command.py +++ b/daklib/command.py @@ -158,6 +158,8 @@ class CommandFile(object): section = sections.section if 'Uploader' in section: self.uploader = section['Uploader'] + if 'Cc' in section: + self.cc.append(section['Cc']) # TODO: Verify first section has valid Archive field if 'Archive' not in section: raise CommandError('No Archive field in first section.')