Fix bug where we calculated the relative path of recurisive copies wrong

Fixes #11470
This commit is contained in:
James Cammarata 2015-07-27 02:29:38 -04:00
parent a1a8997e89
commit 3a4dd523d3

View file

@ -90,7 +90,7 @@ class ActionModule(ActionBase):
if os.path.isdir(source): if os.path.isdir(source):
# Get the amount of spaces to remove to get the relative path. # Get the amount of spaces to remove to get the relative path.
if source_trailing_slash: if source_trailing_slash:
sz = len(source) sz = len(source) + 1
else: else:
sz = len(source.rsplit('/', 1)[0]) + 1 sz = len(source.rsplit('/', 1)[0]) + 1