Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions bin/boto-rsync
Original file line number Diff line number Diff line change
Expand Up @@ -469,7 +469,7 @@ def main():
sys.stdout.write('\n')

# "Walk" the directory and upload files
for root, dirs, files in os.walk(path):
for root, dirs, files in os.walk(unicode(path)):
if no_recurse:
if root != path:
continue
Expand Down Expand Up @@ -599,7 +599,7 @@ def main():
if cloud_path and cloud_path in keys:
del(keys[cloud_path])

for root, dirs, files in os.walk(path):
for root, dirs, files in os.walk(unicode(path)):
if no_recurse:
if root != path:
continue
Expand Down Expand Up @@ -889,7 +889,7 @@ def main():

# If specified, perform deletes
if delete:
for root, dirs, files in os.walk(path):
for root, dirs, files in os.walk(unicode(path)):
if no_recurse:
if root != path:
continue
Expand Down