Skip to content

Commit

Permalink
Merge from 0.9.8.x branch, rel 247:
Browse files Browse the repository at this point in the history
* s3cmd: Re-raise the right exception.



git-svn-id: https://s3tools.svn.sourceforge.net/svnroot/s3tools/s3cmd/trunk@256 830e0280-6d2a-0410-9c65-932aecc39d9d
  • Loading branch information
ludvigm committed Nov 16, 2008
1 parent f111ffe commit 344b301
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
2008-11-16 Michal Ludvig <michal@logix.cz>

Merge from 0.9.8.x branch, rel 247:
* s3cmd: Re-raise the right exception.
Merge from 0.9.8.x branch, rel 246:
* s3cmd, S3/S3.py, S3/Exceptions.py: Don't abort 'sync' or 'put' on files
that can't be open (e.g. Permision denied). Print a warning and skip over
Expand Down
2 changes: 1 addition & 1 deletion s3cmd
Original file line number Diff line number Diff line change
Expand Up @@ -536,7 +536,7 @@ def cmd_sync_remote2local(src, dst):
if e.errno in (errno.EPERM, errno.EACCES):
warning("%s not writable: %s" % (dst_file, e.strerror))
continue
raise
raise e
except KeyboardInterrupt:
try: dst_stream.close()
except: pass
Expand Down

0 comments on commit 344b301

Please sign in to comment.