From 88470ec3483fb1337f4e7c3feaea5ca0deb193ca Mon Sep 17 00:00:00 2001 From: Neal Norwitz Date: Sun, 25 Feb 2007 15:02:38 +0000 Subject: [PATCH] Fix typo --- Lib/xreload.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/xreload.py b/Lib/xreload.py index ba5370e7f00..360dc673a2e 100644 --- a/Lib/xreload.py +++ b/Lib/xreload.py @@ -55,7 +55,7 @@ def xreload(mod): finally: if stream: stream.close() - # Execute the code im a temporary namespace; if this fails, no changes + # Execute the code in a temporary namespace; if this fails, no changes tmpns = {} exec(code, tmpns) # Now we get to the hard part