Skip to content

Commit 51d4fd9

Browse files
authored
Merge pull request scikit-image#3884 from habi/patch-2
Add space in 'ValueError' output of `skimage.measure.regionprops`
2 parents 157f291 + 9a91ee7 commit 51d4fd9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

skimage/measure/_regionprops.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ def __init__(self, slice, label, label_image, intensity_image,
104104
if intensity_image is not None:
105105
if not intensity_image.shape == label_image.shape:
106106
raise ValueError('Label and intensity image must have the'
107-
'same shape.')
107+
' same shape.')
108108

109109
self.label = label
110110

0 commit comments

Comments
 (0)