8000 squelch "security hole" warning, it isn't · dragoncoder047/schemascii@afe34bc · GitHub
[go: up one dir, main page]

Skip to content

Commit afe34bc

Browse files
squelch "security hole" warning, it isn't
1 parent 398c9c5 commit afe34bc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/scriptutils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
def cmd(sh_line: str, say: bool = True):
1111
if say:
1212
print(sh_line)
13-
if code := os.system(sh_line):
13+
if code := os.system(sh_line): # nosec start_process_with_a_shell
1414
print("*** Error", code, file=sys.stderr)
1515
sys.exit(code)
1616

0 commit comments

Comments
 (0)
0