Skip to content

Commit 692468e

Browse files
committed
Fixed print statement for Python3 compatibility
1 parent a7cb59d commit 692468e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ismrmrdtools/grappa.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ def estimate_convolution_kernel(source_data, kernel_mask, regularization_factor=
125125

126126

127127
if A.shape[0] < 3*A.shape[1]:
128-
print "Warning: number of samples in calibration data might be insufficient"
128+
print("Warning: number of samples in calibration data might be insufficient")
129129

130130

131131
S = np.linalg.svd(A,compute_uv=False)

0 commit comments

Comments
 (0)