mirror of
https://git.launchpad.net/~ubuntu-release/britney/+git/britney2-ubuntu
synced 2025-02-23 19:31:55 +00:00
policy.py: Fix incorrect policy key
Signed-off-by: Niels Thykier <niels@thykier.net>
This commit is contained in:
parent
2fadfe3724
commit
2b5d23f69f
@ -87,10 +87,10 @@ class BasePolicy(object):
|
||||
|
||||
|
||||
def apply_policy(self, general_policy_info, suite, source_name, source_data_tdist, source_data_srcdist):
|
||||
if 'age' not in general_policy_info:
|
||||
general_policy_info['age'] = pinfo = {}
|
||||
if self.policy_id not in general_policy_info:
|
||||
general_policy_info[self.policy_id] = pinfo = {}
|
||||
else:
|
||||
pinfo = general_policy_info['age']
|
||||
pinfo = general_policy_info[self.policy_id]
|
||||
return self.apply_policy_impl(pinfo, suite, source_name, source_data_tdist, source_data_srcdist)
|
||||
|
||||
@abstractmethod
|
||||
|
Loading…
x
Reference in New Issue
Block a user