From dd485904cec3eba75f139f2c5ad0402bdb964e2a Mon Sep 17 00:00:00 2001 From: Gerardo Antonio Hagad Date: Mon, 6 Jul 2020 10:32:03 +1200 Subject: [PATCH] Changed the variable "wav" to "fullname". --- docs/reST/tut/ChimpLineByLine.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/reST/tut/ChimpLineByLine.rst b/docs/reST/tut/ChimpLineByLine.rst index 863f05591b..c0626b2258 100644 --- a/docs/reST/tut/ChimpLineByLine.rst +++ b/docs/reST/tut/ChimpLineByLine.rst @@ -144,7 +144,7 @@ that color for the colorkey. :: try: sound = pygame.mixer.Sound(fullname) except pygame.error as message: - print('Cannot load sound:', wav) + print('Cannot load sound:', fullname) raise SystemExit(message) return sound