Skip to content

Commit

Permalink
fix format string without placeholders
Browse files Browse the repository at this point in the history
  • Loading branch information
ddalcino committed Aug 28, 2023
1 parent 0ffc48a commit 2bc3766
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aqt/installer.py
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ def _set_sevenzip(self, external: Optional[str]) -> Optional[str]:
if sevenzip is None:
if EXT7Z:
self.logger.warning(f"The py7zr module failed to load. Falling back to '{fallback}' for .7z extraction.")
self.logger.warning(f"You can use the '--external | -E' flags to select your own extraction tool.")
self.logger.warning("You can use the '--external | -E' flags to select your own extraction tool.")
sevenzip = fallback
else:
# Just use py7zr
Expand Down

0 comments on commit 2bc3766

Please sign in to comment.