Skip to content
This repository has been archived by the owner on Jul 6, 2022. It is now read-only.

Commit

Permalink
fluff: Convert a rogue logging line to f-strings.
Browse files Browse the repository at this point in the history
  • Loading branch information
hbayindir committed Jun 4, 2022
1 parent b2cb971 commit 54b0f01
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

- fix: Correct logging messages corrupted by overzelaous refactoring.
- fluff: Correct a couple of variable naming issues.
- fluff: Convert a rogue logging line to f-strings.
- code: Bump version to 0.0.5.

## 2022-04-27
Expand Down
2 changes: 1 addition & 1 deletion src/magazine_renamer.py
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ def convert_edition_string(edition_string):

# Let's start on working files. Get them one by one, and test against RegEx rules.
for file_to_work_on in arguments.file:
local_logger.debug('Working on file ' + str(file_to_work_on) + '.')
local_logger.debug('Working on file %s.', str(file_to_work_on))

# Need to divide the path and file itself before diving deeper, and need to preserve that path for merging later.
if os.path.isfile(file_to_work_on) == False:
Expand Down

0 comments on commit 54b0f01

Please sign in to comment.