Skip to content

Commit

Permalink
qrun do not use pipes.
Browse files Browse the repository at this point in the history
  • Loading branch information
Rudd-O committed Aug 11, 2023
1 parent 037e5af commit 6014c6f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bin/qrun
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
#!/usr/bin/python3 -u

try:
from pipes import quote
except ImportError:
from shlex import quote
except ImportError:
from pipes import quote
import os
import subprocess
import sys
Expand Down

0 comments on commit 6014c6f

Please sign in to comment.