Skip to content

Commit 1e55e7e

Browse files
author
Roman Schindlauer
committed
Fix a typo in a logging string
1 parent b845652 commit 1e55e7e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

oss_src/unity/python/sframe/util/file_util.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -633,7 +633,7 @@ def s3_recursive_delete(s3_path, aws_credentials = {}):
633633
if s3_path.endswith('/'):
634634
s3_key_prefix += '/'
635635
matches = bucket.list(prefix=s3_key_prefix)
636-
__logger__.info('Deleteing keys: %s' % [key.name for key in matches])
636+
__logger__.info('Deleting keys: %s' % [key.name for key in matches])
637637
bucket.delete_keys([key.name for key in matches])
638638

639639
def expand_full_path(path):

0 commit comments

Comments
 (0)