Skip to content

Commit 9fde368

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

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/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ For example, Python does not handle the Turkish dotted-i as expected.
2727
""" Code Example """
2828
import locale
2929
WORD = "Title"
30-
print(word.upper())
30+
print(WORD.upper())
3131
locale.setlocale(locale.LC_ALL, "tr_TR.utf8")
32-
print(word.upper())
32+
print(WORD.upper())
3333

3434
```
3535

0 commit comments

Comments
 (0)