# HG changeset patch # User Peter Meerwald # Date 1197968968 -3600 # Node ID 4fc1d403ad1459d2ea7b50c496e4c74efbf79e18 # Parent 0e5a584fd6b2f1e2fed82ebee40f52c368703557 fix in apply_mc_all() diff -r 0e5a584fd6b2 -r 4fc1d403ad14 pymctf.py --- a/pymctf.py Tue Dec 18 10:04:01 2007 +0100 +++ b/pymctf.py Tue Dec 18 10:09:28 2007 +0100 @@ -44,7 +44,7 @@ ws_out.append(ws_in[i]) for i in xrange(mid, right): ws_out.append(ws_in[i]) - ws_out.append(apply_mc(ws_in[i], mvfs[i])) + ws_out.append(apply_mc(ws_in[i], mvfs[i], bs)) ws_in = ws_out del mvfs[:take]