1
0
mirror of https://github.com/EDCD/EDMarketConnector.git synced 2025-04-13 15:57:14 +03:00

Replaced missed modulo formatting

This commit is contained in:
A_D 2020-07-10 05:51:40 +02:00
parent a6e6b6353d
commit c4abe6b3ca
No known key found for this signature in database
GPG Key ID: 4BE9EB7DF45076C4

View File

@ -105,11 +105,11 @@ def export(data, filename=None):
# Specials
if 'Fuel Tank'in module['name']:
fuel += 2**int(module['class'])
name = '%s (Capacity: %d)' % (module['name'], 2**int(module['class']))
name = '{} (Capacity: {})'.format(module['name'], 2**int(module['class']))
elif 'Cargo Rack' in module['name']:
cargo += 2**int(module['class'])
name = '%s (Capacity: %d)' % (module['name'], 2**int(module['class']))
name = '{} (Capacity: {})'.format(module['name'], 2**int(module['class']))
else:
name = module['name']
@ -135,11 +135,11 @@ def export(data, filename=None):
loadout[slot[-1]].append(cr + name)
elif __debug__ and not slot.lower().startswith('planetaryapproachsuite'):
print('EDShipyard: Unknown slot %s' % slot)
print('EDShipyard: Unknown slot {}'.format(slot))
except AssertionError as e:
if __debug__:
print('EDShipyard: %s' % e)
print('EDShipyard: {}'.format(e))
continue # Silently skip unrecognized modules