Cleaup indentation to be in line wth rest of the code

This commit is contained in:
Samuel Keeley
2016-01-29 10:12:43 -06:00
committed by Samuel Keeley
parent 58fbcdc642
commit eaf2c7b8cb
+3 -3
View File
@@ -1660,9 +1660,9 @@ class AppleUpdates(object):
os_version_tuple = munkicommon.getOsVersion(as_tuple=True)
for item in apple_updates:
if (item.get('unattended_install') or
(munkicommon.pref('AutomaticAppleUpdates') and
item.get('RestartAction', 'None') is 'None' and
os_version_tuple >= (10, 10))):
(munkicommon.pref('AutomaticAppleUpdates') and
item.get('RestartAction', 'None') is 'None' and
os_version_tuple >= (10, 10))):
if munkicommon.blockingApplicationsRunning(item):
munkicommon.display_detail(
'Skipping unattended install of %s because '