Skip to content

Commit 0c95b65

Browse files
waskyosipma
authored andcommitted
fix typo in return code variable name
1 parent 7a30409 commit 0c95b65

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

chc/cmdline/ParseManager.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
#
77
# Copyright (c) 2017-2020 Kestrel Technology LLC
88
# Copyright (c) 2020-2022 Henny B. Sipma
9-
# Copyright (c) 2023-2024 Aarno Labs LLC
9+
# Copyright (c) 2023-2025 Aarno Labs LLC
1010
#
1111
# Permission is hereby granted, free of charge, to any person obtaining a copy
1212
# of this software and associated documentation files (the "Software"), to deal
@@ -456,8 +456,8 @@ def parse_with_ccommands(
456456
returncode = subprocess.call(command)
457457
print("\n" + ("-" * 80) + "\n\n")
458458
else:
459-
returncopde = (
460-
subprocess.call(command, stdout=open(os.devnull, "w")))
459+
returncode = subprocess.call(command, stdout=open(os.devnull, "w"))
460+
461461
if returncode == 1:
462462
print("\n" + ("*" * 80))
463463
print("Parsing error in " + cfilename)

0 commit comments

Comments
 (0)