diff --git a/src/allmydata/testing/web.py b/src/allmydata/testing/web.py index 7d9b5730b..64e615cd6 100644 --- a/src/allmydata/testing/web.py +++ b/src/allmydata/testing/web.py @@ -54,6 +54,9 @@ class _FakeTahoeRoot(Resource, object): """ def __init__(self, uri=None): + """ + :param uri: a Resource to handle the `/uri` tree. + """ Resource.__init__(self) # this is an old-style class :( self._uri = uri self.putChild(b"uri", self._uri)