From f973657a6a1280c9b90f3fa48ea042ced7e9ac6c Mon Sep 17 00:00:00 2001 From: Daira Hopwood Date: Tue, 28 Apr 2015 23:35:06 +0100 Subject: [PATCH] interfaces.py: fix arguments to create_subdirectory. Signed-off-by: Daira Hopwood --- src/allmydata/interfaces.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/allmydata/interfaces.py b/src/allmydata/interfaces.py index 4ec5a0e6..ded8ffb2 100644 --- a/src/allmydata/interfaces.py +++ b/src/allmydata/interfaces.py @@ -1291,7 +1291,8 @@ class IDirectoryNode(IFilesystemNode): is a file, or if must_be_file is True and the child is a directory, I raise ChildOfWrongTypeError.""" - def create_subdirectory(name, initial_children={}, overwrite=True, metadata=None): + def create_subdirectory(name, initial_children={}, overwrite=True, + mutable=True, mutable_version=None, metadata=None): """I create and attach a directory at the given name. The new directory can be empty, or it can be populated with children according to 'initial_children', which takes a dictionary in the same -- 2.37.2