~tobias-genannt/duplicity/nocompress

« back to all changes in this revision

Viewing changes to duplicity/backends/botobackend.py

  • Committer: Kenneth Loafman
  • Date: 2011-11-25 17:47:57 UTC
  • Revision ID: kenneth@loafman.com-20111125174757-r8pmg0938ormyry7
- Make adjustments for the new structure.
- Adjust boto requirements to be 1.6a or higher.
- Cleanup install scripts.

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
from duplicity import globals
24
24
 
25
25
if globals.s3_use_multiprocessing:
 
26
    if sys.version_info[:2] < (2,6):
 
27
        print "Sorry, S3 multiprocessing requires version 2.6 or later of python"
 
28
        sys.exit(1)
26
29
    import _boto_multi.py
27
30
else:
28
31
    import _boto_single.py