From: Keir Fraser Date: Mon, 29 Oct 2007 08:45:58 +0000 (+0000) Subject: xend, acm: Fix bad indentation X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~14828^2~25 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=a99192d1d7ed65885125d470a58946019064e58a;p=xen.git xend, acm: Fix bad indentation Signed-off-by: Stefan Berger --- diff --git a/tools/python/xen/util/xsm/acm/acm.py b/tools/python/xen/util/xsm/acm/acm.py index cf47fafb68..5d17191293 100644 --- a/tools/python/xen/util/xsm/acm/acm.py +++ b/tools/python/xen/util/xsm/acm/acm.py @@ -1377,9 +1377,9 @@ def get_security_label(self, xspol=None): from xen.xend.XendXSPolicyAdmin import XSPolicyAdminInstance xspol = XSPolicyAdminInstance().get_loaded_policy() - label = "" - if xspol: - label = xspol.policy_get_domain_label_formatted(domid) - if domid != 0: - label = self.info.get('security_label', label) + label = "" + if xspol: + label = xspol.policy_get_domain_label_formatted(domid) + if domid != 0: + label = self.info.get('security_label', label) return label