From dd237d4df77489170dc5c204a9ba58819a904dfa Mon Sep 17 00:00:00 2001 From: Patrick McCarty Date: Tue, 6 Jan 2009 14:20:51 -0800 Subject: [PATCH] Fix compile Signed-off-by: Patrick McCarty --- scripts/etf2ly.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/etf2ly.py b/scripts/etf2ly.py index 26fd2e03ae..54daa94dec 100644 --- a/scripts/etf2ly.py +++ b/scripts/etf2ly.py @@ -1116,7 +1116,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