Skip to content

Commit

Permalink
fix module name
Browse files Browse the repository at this point in the history
  • Loading branch information
FriedrichFroebel authored Jul 24, 2024
1 parent e6bb781 commit e45b7d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ocrodjvu/ipc.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ def __init__(self, *args, **kwargs):
except KeyError:
commandline = args[0]
if logger.isEnabledFor(logging.DEBUG):
logger.debug(str.join(' ', map(pipes.quote, commandline)))
logger.debug(str.join(' ', map(shlex.quote, commandline)))
self.__command = commandline[0]
self.__wait_called = False
try:
Expand Down

0 comments on commit e45b7d2

Please sign in to comment.