Skip to content
This repository has been archived by the owner on Feb 14, 2024. It is now read-only.

Commit

Permalink
Change % type to digit when logging numbers
Browse files Browse the repository at this point in the history
Co-authored-by: dav3r <david.redmin@trio.dhs.gov>
  • Loading branch information
aloftus23 and dav3r committed Jan 27, 2022
1 parent a74c4cd commit 2e9bef9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pe_reports/report_generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ def generate_reports(datestring, output_directory):

# Iterate over organizations
if pe_orgs:
logging.info("PE orgs count: %s", len(pe_orgs))
logging.info("PE orgs count: %d", len(pe_orgs))
for org in pe_orgs:
# Assign organization values
org_uid = org[0]
Expand Down

0 comments on commit 2e9bef9

Please sign in to comment.