Skip to content

Commit dc8f15a

Browse files
CarstenGrohmannphilpep
authored andcommitted
Add missing comma in get_mountpoints() docstring
1 parent 8d69308 commit dc8f15a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

testinfra/modules/mountpoint.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ def get_mountpoints(cls):
8484
"""Returns a list of MountPoint instances
8585
8686
>>> host.mount_point.get_mountpoints()
87-
[<MountPoint(path=/proc, device=proc, filesystem=proc, options=rw,nosuid,nodev,noexec,relatime)>
87+
[<MountPoint(path=/proc, device=proc, filesystem=proc, options=rw,nosuid,nodev,noexec,relatime)>,
8888
<MountPoint(path=/, device=/dev/sda1, filesystem=ext4, options=rw,relatime,errors=remount-ro,data=ordered)>]
8989
""" # noqa
9090
mountpoints = []

0 commit comments

Comments
 (0)