Commit 29ca2ebc authored by Andreas Jung's avatar Andreas Jung

fixed wrong string module replacement

parent 67cf8be7
...@@ -514,7 +514,7 @@ def fancy_replace(a, alo, ahi, b, blo, bhi): ...@@ -514,7 +514,7 @@ def fancy_replace(a, alo, ahi, b, blo, bhi):
btags = btags + ' ' * (la - lb) btags = btags + ' ' * (la - lb)
combined = map(lambda x,y: _combine[x+y], atags, btags) combined = map(lambda x,y: _combine[x+y], atags, btags)
print '-', aelt, '+', belt, '?', \ print '-', aelt, '+', belt, '?', \
''.string.join(combined).rstrip() ''.join(combined).rstrip()
else: else:
# the synch pair is identical # the synch pair is identical
print ' ', aelt, print ' ', aelt,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment