From 76cb674fbbbbfb1a7050da3ddc5f3982e05d08ed Mon Sep 17 00:00:00 2001 From: Dion Moult Date: Wed, 20 Feb 2019 22:16:12 +1100 Subject: [PATCH] Fix typo --- src/Mod/Draft/Draft.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Mod/Draft/Draft.py b/src/Mod/Draft/Draft.py index 5eeaf197ee..bab72e7430 100644 --- a/src/Mod/Draft/Draft.py +++ b/src/Mod/Draft/Draft.py @@ -1493,7 +1493,7 @@ def move(objectslist,vector,copy=False): in objects (that can be an object or a list of objects) in the direction and distance indicated by the given vector. If copy is True, the actual objects are not moved, but copies - are created instead.he objects (or their copies) are returned.''' + are created instead. The objects (or their copies) are returned.''' typecheck([(vector,Vector), (copy,bool)], "move") if not isinstance(objectslist,list): objectslist = [objectslist] objectslist.extend(getMovableChildren(objectslist))