Skip to content

Commit bac97ed

Browse files
committed
Fix incorrect usage of "it's"
1 parent 9426a68 commit bac97ed

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/netCDF4/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ def _find_dim(grp, dimname):
4444
except:
4545
raise ValueError("cannot find dimension %s in this group or parent groups" % dimname)
4646
if dim is None:
47-
raise KeyError("dimension %s not defined in group %s or any group in it's family tree" % (dimname, grp.path))
47+
raise KeyError("dimension %s not defined in group %s or any group in its family tree" % (dimname, grp.path))
4848
else:
4949
return dim
5050

0 commit comments

Comments
 (0)