diff --git a/pyerrors/input/openQCD.py b/pyerrors/input/openQCD.py index dc3cdf5d..0a88dc18 100644 --- a/pyerrors/input/openQCD.py +++ b/pyerrors/input/openQCD.py @@ -1084,7 +1084,7 @@ def read_ms5_xsf(path, prefix, qc, corr): realObs = [] imagObs = [] compObs = [] - for t in range(tmax): realObs.append(Obs(realsamples[t], names = prefix, idl = cnfgs)) - for t in range(tmax): imagObs.append(Obs(imagsamples[t], names = prefix, idl = cnfgs)) + for t in range(tmax): realObs.append(Obs([realsamples[t]], names = [prefix], idl = [cnfgs])) + for t in range(tmax): imagObs.append(Obs([imagsamples[t]], names = [prefix], idl = [cnfgs])) for t in range(tmax): compObs.append(CObs(realObs[t], imagObs[t])) return Corr(compObs) \ No newline at end of file