From 76366005332b49bcbdf486a982e01a2c64ac0c07 Mon Sep 17 00:00:00 2001 From: Ed Braaten Date: Thu, 23 Apr 2015 22:17:56 -0700 Subject: [PATCH] Added comment before exit statement in hello.py example. --- python/hello.py | 1 + 1 file changed, 1 insertion(+) diff --git a/python/hello.py b/python/hello.py index 0564ab7..154d35f 100755 --- a/python/hello.py +++ b/python/hello.py @@ -78,4 +78,5 @@ for line in file: linenum += 1 file.close() +# All done, finish with normal exit code. sys.exit(0)