Fix English: "childs" into "children"

refs #1675
This commit is contained in:
Laurent Bachelier 2014-11-21 16:22:31 +01:00 committed by Romain Bignon
commit 88df613a53
5 changed files with 11 additions and 11 deletions

View file

@ -464,11 +464,11 @@ class ReplApplication(Cmd, ConsoleApplication):
def path_completer(self, arg):
dirname = os.path.dirname(arg)
try:
childs = os.listdir(dirname or '.')
children = os.listdir(dirname or '.')
except OSError:
return ()
l = []
for child in childs:
for child in children:
path = os.path.join(dirname, child)
if os.path.isdir(path):
child += '/'