remove debug

This commit is contained in:
meejah 2019-09-11 13:23:42 -06:00
parent d381d3e92b
commit 8b7e1c30ab

View File

@ -108,12 +108,9 @@ class URIHandler(resource.Resource, object):
new directory
"""
t = get_arg(req, "t", "").strip()
print("oh its a post!", t)
if t in ("", "upload"):
file_format = get_format(req)
print("ding", file_format)
mutable_type = get_mutable_type(file_format)
print(mutable_type)
if mutable_type is not None:
return unlinked.POSTUnlinkedSSK(req, self.client, mutable_type)
else:
@ -136,9 +133,6 @@ class URIHandler(resource.Resource, object):
and creates and appropriate handler (depending on the kind of
capability it was passed).
"""
print("getchild {} {}".format(name, type(name)))
print(dir(req))
print(req.args)
if not name:
return self
try: