Skip to content

Commit 399fd52

Browse files
Fix comment formatting in s3events.py
1 parent 05bdc6b commit 399fd52

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

awscli/customizations/s3events.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ def save_file(self, parsed, **kwargs):
126126
self._output_file, os.O_WRONLY | os.O_CREAT | os.O_TRUNC, 0o600
127127
)
128128
if stat.S_ISREG(os.fstat(fd).st_mode):
129-
# Only chmod regular files; skip devices like /dev/null
129+
# Only chmod regular files; skip special files like /dev/null
130130
os.chmod(self._output_file, 0o600)
131131
with os.fdopen(fd, 'wb') as fp:
132132
for event in event_stream:

0 commit comments

Comments
 (0)