Skip to content

Commit

Permalink
avoid deprecated pipse package, use env to find python3
Browse files Browse the repository at this point in the history
  • Loading branch information
Mario Hros committed Mar 7, 2023
1 parent 7623a12 commit 65db59b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions _ks.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python3

# KubeShort - shortcuts to the most common kubectl actions
#
Expand All @@ -23,7 +23,7 @@
import json
import yaml
import shutil
from pipes import quote
from shlex import quote

# script name (to which symlinks should point to)
SCRIPT_FILE_NAME = "_ks.py"
Expand Down
2 changes: 1 addition & 1 deletion k.logcli
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/python3
#!/usr/bin/env python3

import argparse
import subprocess
Expand Down

0 comments on commit 65db59b

Please sign in to comment.