Skip to content

Commit acea30e

Browse files
s19110myteron
andauthored
Update docs/Secure-Coding-Guide-for-Python/CWE-707/CWE-175/example01.py
Co-authored-by: myteron <[email protected]> Signed-off-by: Hubert Daniszewski <[email protected]>
1 parent 9fde368 commit acea30e

File tree

1 file changed

+2
-2
lines changed
  • docs/Secure-Coding-Guide-for-Python/CWE-707/CWE-175

1 file changed

+2
-2
lines changed

docs/Secure-Coding-Guide-for-Python/CWE-707/CWE-175/example01.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
""" Code Example """
44
import locale
55
WORD = "Title"
6-
print(word.upper())
6+
print(WORD.upper())
77
locale.setlocale(locale.LC_ALL, "tr_TR.utf8")
8-
print(word.upper())
8+
print(WORD.upper())

0 commit comments

Comments
 (0)