From 7a696f81691477a86c029e6a4c69b8b13a729132 Mon Sep 17 00:00:00 2001 From: Graham Percival Date: Mon, 9 Jan 2012 06:14:30 +0000 Subject: [PATCH] Rename (c) to (d) to avoid grand-replace problem --- scripts/etf2ly.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/scripts/etf2ly.py b/scripts/etf2ly.py index 009b49ae95..5267ef2e84 100644 --- a/scripts/etf2ly.py +++ b/scripts/etf2ly.py @@ -1131,11 +1131,13 @@ class Etf_file: while c and c.number <> endno: - thread.append (c) + d = c # hack to avoid problem with build/scripts/grand-replace.py + thread.append (d) c = c.next if c: - thread.append (c) + d = c # hack to avoid problem with build/scripts/grand-replace.py + thread.append (d) return thread -- 2.39.2