From: Michael Vrable Date: Wed, 30 Jun 2010 19:29:49 +0000 (-0700) Subject: Apply fixes to s3:// URL parsing under Python 2.6. X-Git-Url: http://git.vrable.net/?a=commitdiff_plain;ds=inline;h=179ae0cb9dc0cdb56217f517bd3dab62b0b3376c;hp=179ae0cb9dc0cdb56217f517bd3dab62b0b3376c;p=cumulus.git Apply fixes to s3:// URL parsing under Python 2.6. The urlparse module starting in Python 2.6 appears to be compliant with RFC 3986, while previous versions were not. This causes a change in the behaviro of parsing s3:// URLs, however, resulting in breakage with Python 2.6. Try to fix this by adjusting our code so that it works with either the old or the new behavior. ---