Skip to content

Commit

Permalink
Merge branch 'develop-remove-deprecatedPipes'. Close #292.
Browse files Browse the repository at this point in the history
  • Loading branch information
ivanperez-keera committed Nov 26, 2024
2 parents 026c409 + 18a82a1 commit e466004
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions analyzer/python/ikos/analyzer.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@
import json
import os
import os.path
import pipes
import shlex
import shutil
import signal
Expand Down Expand Up @@ -553,10 +552,7 @@ def parse_arguments(argv):
return opt


if hasattr(shlex, 'quote'):
sh_quote = shlex.quote
else:
sh_quote = pipes.quote
sh_quote = shlex.quote


def command_string(cmd):
Expand Down

0 comments on commit e466004

Please sign in to comment.