From 15cde08d17d0b2321ecbeed00f23d2b239cf0fa0 Mon Sep 17 00:00:00 2001 From: hashtagallison Date: Thu, 11 Apr 2019 19:40:32 -0500 Subject: [PATCH] Update python_ex226.py pg 120 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 example. --- python_ex226.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python_ex226.py b/python_ex226.py index 72a37cf..251d480 100644 --- a/python_ex226.py +++ b/python_ex226.py @@ -1,2 +1,2 @@ # code in module2 -import hello +import module1