This commit is contained in:
Thomas Nagy 2011-10-04 21:53:06 +02:00
parent 2baaf78394
commit aae2817b62
1 changed files with 4 additions and 1 deletions

View File

@ -223,7 +223,10 @@ class Node(object):
return lst
def mkdir(self):
"""Create a folder represented by this node"""
"""
Create a folder represented by this node, creating intermediate nodes as needed
An exception will be raised only when the folder cannot possibly exist there
"""
if getattr(self, 'cache_isdir', None):
return