mirror of
https://github.com/munki/munki.git
synced 2026-05-03 02:40:32 -05:00
Code formatting style cleanup in updatecheck.py
This commit is contained in:
@@ -1073,11 +1073,11 @@ def getItemDetail(name, cataloglist, vers=''):
|
||||
# this machine, so we can use it
|
||||
supported_arch_found = True
|
||||
break
|
||||
if not supported_arch_found and \
|
||||
len(item['supported_architectures']) == 1 and \
|
||||
item['supported_architectures'][0] == 'x86_64' and \
|
||||
MACHINE['arch'] == 'i386' and \
|
||||
MACHINE['x86_64_capable'] == True:
|
||||
if (not supported_arch_found
|
||||
and len(item['supported_architectures']) == 1
|
||||
and item['supported_architectures'][0] == 'x86_64'
|
||||
and MACHINE['arch'] == 'i386'
|
||||
and MACHINE['x86_64_capable'] == True):
|
||||
supported_arch_found = True
|
||||
|
||||
if not supported_arch_found:
|
||||
|
||||
Reference in New Issue
Block a user