Skip to content

Commit ba8aae8

Browse files
committed
Fix incorrect code block split into 2 lines
SSIA.
1 parent c5002a5 commit ba8aae8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/coldfront_plugin_cloud/management/commands/calculate_storage_gb_hours.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -210,8 +210,8 @@ def process_invoice_row(allocation, attrs, su_name, rate):
210210
if options['openshift_gb_rate']:
211211
openshift_storage_rate = options['openshift_gb_rate']
212212

213-
logger.info(f'Using storage rate {openstack_storage_rate} (Openstack) and
214-
{openshift_storage_rate} (Openshift) for {options["invoice_month"]}')
213+
logger.info(f'Using storage rate {openstack_storage_rate} (Openstack) and '
214+
f'{openshift_storage_rate} (Openshift) for {options["invoice_month"]}')
215215

216216
logger.info(f'Writing to {options["output"]}.')
217217
with open(options['output'], 'w', newline='') as f:

0 commit comments

Comments
 (0)