~mterry/duplicity/more-test-fixes

« back to all changes in this revision

Viewing changes to duplicity/backends/botobackend.py

  • Committer: Kenneth Loafman
  • Date: 2011-12-01 16:15:25 UTC
  • Revision ID: kenneth@loafman.com-20111201161525-kcsqdes2x8s3e2ny
Fix extraneous '.py' that keeps import from working.

Show diffs side-by-side

added added

removed removed

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