Skip to content

Commit

Permalink
Fix logging message in LSBSteg
Browse files Browse the repository at this point in the history
  • Loading branch information
ragibson committed Jun 22, 2019
1 parent c954c4c commit 4a737af
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions stego_lsb/LSBSteg.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,8 @@ def hide_message_in_image(input_image, message, num_lsb):

if 8 * len(data) > max_bits_to_hide(image, num_lsb):
log.debug(
f"Only able to hide {max_bits_to_hide(image, num_lsb) // 8} bytes ",
"in image. PROCESS WILL FAIL!",
f"Only able to hide {max_bits_to_hide(image, num_lsb) // 8} bytes " +
"in image. PROCESS WILL FAIL!"
)

start = time()
Expand Down

0 comments on commit 4a737af

Please sign in to comment.