Code formatting style cleanup in updatecheck.py

This commit is contained in:
Greg Neagle
2013-12-17 09:56:10 -08:00
parent b5006d2345
commit 01e649084f
+5 -5
View File
@@ -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: