From ba9ae5d2f83689ae684067759ed6844f57fa2d20 Mon Sep 17 00:00:00 2001 From: hashtagallison Date: Thu, 11 Apr 2019 19:47:25 -0500 Subject: [PATCH] Update python_ex228.py pg 121 in the self-taught programmer. Should import "module1" (instead of "hello") according to instructions and for reproducing the autorun error with imported modules. Importing "hello" does not produce the same error mentioned in the prior example (see previous pull request), therefore to resolve the error, will also need to call "module1" in this example. --- python_ex228.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python_ex228.py b/python_ex228.py index a9d6562..adbae41 100644 --- a/python_ex228.py +++ b/python_ex228.py @@ -1,3 +1,3 @@ # code in module2 -import hello +import module1