diff options
| author | Scott Ostler <scottbot9000@gmail.com> | 2010-11-06 20:39:24 -0400 |
|---|---|---|
| committer | Scott Ostler <scottbot9000@gmail.com> | 2010-11-06 20:39:24 -0400 |
| commit | 83845fccdfbde89f07bc670288cce2cf9f60d3b6 (patch) | |
| tree | 79342346031e1bd878ae09ae4c7bd705be6e9a34 /scripts/s3upload.py | |
| parent | 009b7730d31abc7424d23281e034780a55368944 (diff) | |
dailyimgupload.py now deletes, s3upload.py recognizes keyboardinterrupt
Diffstat (limited to 'scripts/s3upload.py')
| -rw-r--r-- | scripts/s3upload.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/scripts/s3upload.py b/scripts/s3upload.py index 163f3b6..e761ea5 100644 --- a/scripts/s3upload.py +++ b/scripts/s3upload.py @@ -22,6 +22,8 @@ def get_or_initialize_aws_connection(): def retry_func(f, count): try: f() + except KeyboardInterrupt: + raise except: if count <= 1: raise else: |
