From a5f4943ee11461a8966e6d99d6be7e06c351fe86 Mon Sep 17 00:00:00 2001 From: Robert Bradshaw Date: Sat, 22 Nov 2008 00:33:46 -0800 Subject: [PATCH] fix typo --- Cython/Compiler/ModuleNode.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cython/Compiler/ModuleNode.py b/Cython/Compiler/ModuleNode.py index 3d0f1805..e2a9f7e3 100644 --- a/Cython/Compiler/ModuleNode.py +++ b/Cython/Compiler/ModuleNode.py @@ -550,7 +550,7 @@ class ModuleNode(Nodes.Node, Nodes.BlockNode): for filename in module.include_files: if filename not in includes: includes.append(filename) - for filename in env.include_files[:] + for filename in env.include_files: if filename not in includes: includes.append(filename) for filename in includes: -- 2.26.2