question re recursive
avpavp opened this issue · 1 comments
avpavp commented
I'm using recursive, but I see in line 475 for recursive uploads, it sets the "BOX" to "" - is this by design? For my needs, I've changed this to do the same as non-recursive; options["box"] instead of ""
Thanks your project is working great for me so far!
rgladwell commented
It's been a while since I modified the recursive_upload
but I think this is by design: the subbox
parameter is a recursive parameter, used to carry the current sub-box we're uploading to the next recursive call. I think we could pass option['box']
at the original call if needed, but it would have to be tested.