summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGraham Percival <graham@percival-music.ca>2011-01-14 11:56:55 +0000
committerGraham Percival <graham@percival-music.ca>2011-01-14 11:56:55 +0000
commit5c771783a27413b6e496512b3d8f939f01f8f1e8 (patch)
treef58d93bc07458c563661ee6c353c670d9a157874
parentc360891a6acdcf519baab2f375d23570dc400d51 (diff)
Fix problem from grand-replace.
-rw-r--r--scripts/etf2ly.py3
1 files changed, 2 insertions, 1 deletions
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)