From 5c771783a27413b6e496512b3d8f939f01f8f1e8 Mon Sep 17 00:00:00 2001 From: Graham Percival Date: Fri, 14 Jan 2011 11:56:55 +0000 Subject: [PATCH] Fix problem from grand-replace. --- scripts/etf2ly.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/etf2ly.py b/scripts/etf2ly.py index a487d623d8..009b49ae95 100644 --- a/scripts/etf2ly.py +++ b/scripts/etf2ly.py @@ -1131,7 +1131,8 @@ class Etf_file: while c and c.number <> endno: - thread.append (c) c = c.next + thread.append (c) + c = c.next if c: thread.append (c) -- 2.39.2