diff options
author | Graham Percival <graham@percival-music.ca> | 2012-01-09 06:14:30 +0000 |
---|---|---|
committer | Graham Percival <graham@percival-music.ca> | 2012-01-09 06:14:30 +0000 |
commit | 7a696f81691477a86c029e6a4c69b8b13a729132 (patch) | |
tree | 12515f3be82b3414c99b7aa0c0aacb41cf06592a | |
parent | 42984d05239a3c3be1ea859ba5214ce140448afc (diff) |
Rename (c) to (d) to avoid grand-replace problem
-rw-r--r-- | scripts/etf2ly.py | 6 |
1 files 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 |